1. All that this application does is print the integers between 1 and 100.
  2. 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;
}

Leave a Reply

Your email address will not be published. Required fields are marked *

Verified by MonsterInsights