117) The following program fragment
int i = 5;
do
{
putchar(i + 100);
printf("%d", i--);
}
while (i);
results in the printing of
Answer is:
i5h4g3f2el
Related C Programming MCQ with Answers
Answer is:
none of the above
Answer is:
3-7-11
Answer is:
it is assumed to be present and taken to be true
Answer is: