Computer Science, asked by ahnafabid, 2 months ago

Fill in the blanks to print the numbers O
through 5 using the do-while loop:
#include<stdio.h>
int main()
{
int c = 0;
(1)_
{
printf ("%d", c);
_(2)__++;
}
while (c <= 5) _(3)_
return 0;​

Answers

Answered by ggyansinghrathore
0

Explanation:

जल संरक्षण के कोई दो तरीके बताइए और उससे होने वाले लाभ लिखिए ?

Answered by jawed20cse308
0

Answer:

1. do

2. c

3. ;

by the syntax of do while loop the above answer is correct . Hope u understand

Similar questions