C Programming MCQ

1:

The following statements

for (i= 3; i < 15; i += 3)
{
printf ("%d ", i); 
++i;
}

will result in the printing of

A.

3 6 9 12

B.

3 6 9 12 15

C.

3711

D.

3 7 I I 15

 

Answer : C

Explanation :

Write your comments here:


Report Error
 

Option: A

Explanation : Explanation will come here. Explanation will come here. Explanation will come here. Explanation will come here. Explanation will come here.