Home » C Programming » Loops » Question
  1. What will be the output of the following C code?
     #include <stdio.h>
    int main()
    {
    int n;
    for (n = -4; n < -6; n++)
    printf("Hey...");
    }
    1. Hey...
    2. Compilation Error
    3. Nothing
    4. Runtime Error
    5. None of these
Correct Option: C

Nothing



Your comments will be displayed only after manual approval.