-
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int k = 0;
do {
k++;
printf("Executed In while loop\n");
} while (k < 5);
}
-
- Depends on the compiler
- Compilation Error
- Executed In while loop
Executed In while loop
Executed In while loop - Executed In while loop
Executed In while loop
Executed In while loop
Executed In while loop - Executed In while loop
Executed In while loop
Executed In while loop
Executed In while loop
Executed In while loop
Correct Option: E
Executed In while loop
Executed In while loop
Executed In while loop
Executed In while loop
Executed In while loop