โช 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);
}
#include
void main()
{
int i= 5;
do {
putchar (i + 100);
printf("%d", i--);
}while(i);
}