Multiple choice What will be the output of the above code? for (;;) { printf("Hello"); } Compilation Error. The word 'Hello' will be printed infinitely. 'Hello' will be printed only once. 'Hello' will not be printed at all. 'Hello' will print once and then program will show a runtime error. Reveal answer Fill a bubble to check yourself B Correct answer Explanation The C for statement has the following form: for(start;condition;increment/decrement) {} In the statement given above since, nothing has been specified the for loop, it will run infinitely. To terminate such a loop the 'ctrl+break' key combination should be pressed.