- All that this application does is print the integers between 1 and 100.
- A for loop that begins at 1 and continues until it reaches 100 will be used.
#include <stdio.h>
int main() {
// Looping from 1 to 100
for (int i = 1; i <= 100; i++) {
printf("%d\n", i); // Printing each number
}
return 0;
}