What is the output of the following program ?
Practice Control Instructions – What is the output of the following program ?
#include
void main()
{
int i= 5;
do {
putchar (i + 100);
printf("%d", i--);
}while(i);
}