CS201 Midterm Solved Quizs 1 2015
CS201 Midterm Solved Quizs 1 2015
=========================================
Inno latest CS201 Solved Quizz No-1 Fall2015
What will be the output of the following while loop? int counter = 0 ;
while(counter < 15) cout << counter << “ ”; counter++;
1234
12345
Compile time error
Infinite loop