What is the output of the following program ?


Loading

โœช Choose the correct option.

What is the output of the following program ?


#include

void main()

{

int i= 5;

if (i == 5)

return 0;

else

printf("i is not five");

printf("over");

}

A. a syntax error
B. an execution error
C. printing of overan error message
D. execution termination, without printing anything

Leave a Comment