+ 3
What will be the output of this code ? Can any one tell ?
#include <iostream> using namespace std; int main() { for(;;); }
3 Answers
+ 2
None... the first "argument" of for defines the condition for the code to execute... If it is empty it doesnt get executed...
+ 1
it's loops forever..
0
Nothing.