What is the output of the following C Program?


Loading

โœช Choose the correct option.

What is the output of the following C Program?


void main() {

for(i = 1; i < 5; i++)

{

if (i == 3)

continue;

else

printf ("%d", i);

}

}

A. 1 2 4 5
B. 38018
C. 38444
D. none of these

Leave a Comment