-
What will be the output of the following C code?
#include
int main()
{
do
printf("Executed In while loop\n");
while (0);
printf("Executed After loop\n");
}
-
- Executed In while loop
- Executed After loop
- Executed After loop
Executed In while loop - Executed In while loop
Executed After loop - None of these
Correct Option: D
Executed In while loop
Executed After loop