Computer Science, asked by ritupatil3098, 2 months ago

What will be the output of following program ? #include
stdio.h> int main() { int tally=0; for() {
if(tally==10) break; printf("%d",++tally);
return 0; }
19
0 1 2 3 4 5 6 7 8 9
10
0123 ... infinite
times
1 2 3 4 5 6 7 8 9
10​

Answers

Answered by sushilkumarpra93
0

Explanation:

Go on Replit and you can practice each program.

Similar questions