Computer Science, asked by tejaswini6409, 11 months ago

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 aarushi2149
0
the output :
"%d\n", ++a
Similar questions