1.

What is the output of the following code int n = 0, m=1; do { printf(“%d”, m); m++; } while(m

A. 0
B. 2
C. 1
D. 4
Answer» D. 4


Discussion

No Comment Found