-
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");
}
-
- Executed In for loop
- Depends on the compiler
- Compilation Error
- Depends on the standard compiler implements
- None of these
Correct Option: D
Depends on the standard compiler implements