+3 votes
by kratos

What is the following program doing?

main ()

{ int d = 1;

do

printf(“%d\n”, d++);

while (d < = 9);}

(A) Adding 9 integers

(B) Adding integers from 1 to 9

(C) Displaying integers from 1 to 9

(D) of these

1 Answer

+3 votes
by kratos
 
Best answer

Correct option -**(C) Displaying integers from 1 to 9**

Explanation:-

d starting from 1 is incrementing one by one till d=9 so the printf statement is printing numbers from 1 to 9.

...