Use of loops in C
Dec 5, 2022 · 2 min read · Suppose you want to print numbers from 1 to 100 on the output screen. There are two possible ways: First one is to add 100 printf statements in main function body to print 100 different numbers sequentially from 1 to 100. Example 1 int main() { p...
Join discussion