What is the output of the following “C” program ?


Loading

โœช Choose the correct option.

What is the output of the following “C” program ?


#include

void main()

{

int i= 5;

do {

putchar (i + 100);

printf("%d", i--);

}while(i);

}

A. i5h4g3flel
B. 14h3g2fle0
C. an error message
D. none of these

Leave a Comment