Programming
Thursday, July 23, 2020
Tutorial 14: while loop.
Example: print (1 - 33).
#include
<stdio.h>
int
main()
{
int
i=0;
while
(i<34)
{
printf(
"%d\n"
,i);
i=i+1;
}
return
0;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment