Add zero to one hundred do....whule c language complete program

Write a loop program in C language, starting from 0 and adding 1 each time until it reaches 100. The code is as follows: int i; for (i=0; i<=100; i++) { printf("%d\n", i); }

Guess you like

Origin blog.csdn.net/weixin_35756892/article/details/129547235