i=0;

  1. S

    Programming puzzles

    Post some interesting " find the output " type questions or any other sort of tricky programs here in c++ or java.... take the following code: int i, n = 20; for (i=0; i<n; i--) { cout << "x" << endl; } by changing only ONE character in the above code, meaning you cannot change 20 to...
Top Bottom