Complete the following programs for following output.
a=0;
do{
if(a<3)
{a+=2;
printf("%d\n", ++a);
break ; }
} while (a<5);
Answers
Answered by
0
the output :
"%d\n", ++a
"%d\n", ++a
Similar questions