Home

A program to print numbers between 1 and 10 (explain FOR)

C Programming Language 036

The following code shows how to write a program to print numbers between 1 and 10 (explain FOR).

Program

#include <stdio.h>

void main()
{
    int i;

    printf("Numbers below 10 are \n");
    for (i = 1; i <= 10; i++)
    {
        printf("%d\n", i);
    }

    printf("\n");
}

Result

Numbers below 10 are 
1
2
3
4
5
6
7
8
9
10


Last Updated on

Next Post: GraphProtocol: TS2322 null assignment in Subgraph →

Comments