Computer Science, asked by barnasaha35, 4 months ago

how many times below “while” loop will be executed #include stdio.h int.main() { int i,= 0 while (true) printf(“%d”,i); return 0;}​

Answers

Answered by SinisterX
1

In Loop, the statement needs to be written only once and the loop will be executed 10 times as shown below. In computer programming, a loop is a sequence of instructions that is repeated until a certain condition is reached

Similar questions