Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    for (int k = 0; k < 1; k++)
    printf("Executed In for loop\n");
    }
    1. Executed In for loop
    2. Depends on the compiler
    3. Compilation Error
    4. Depends on the standard compiler implements
    5. None of these
Correct Option: D

Depends on the standard compiler implements



Your comments will be displayed only after manual approval.