while for do while code example
Example 1: while loop
#include<stdio.h>
int main()
{
printf("\n\n\t\tStudytonight - Best place to learn\n\n\n");
int i = 0;
printf("\nPrinting numbers using while loop from 0 to 9\n\n");
while(i<10)
{
printf("%d\n",i);
i++;
}
printf("\n\n\t\t\tCoding is Fun !\n\n\n");
return 0;
}
Example 2: while
while True:
print("A period of time.")
# "we chatted for a while"
print("Similar: time spell stretch stint")
print("at the same time; meanwhile.")
# "he starts to draw. talking for a while"
"""
CONJUCTION :D
"""