Computer Science, asked by ayushmaitra76, 1 month ago

CLS
c = 0
DO WHILE c >= 10
PRINT c
c = c + 1
END.

WHAT IS THE ERROR

Answers

Answered by sariQus
0

Answer:

there is a logic error because c is less than 10 and the program never will go inside the while loop and increment the c. It should be do while c<=10 in order to be working properly.

Explanation:

Similar questions