Program to print natural number from 1 to any number in C-language

#include<stdio.h>
int main()
{
    int i,n;
    printf("Enter the last natural number\n");
    scanf("%d",&n);
    printf("All natural number from 1to %d is\n",n);
    for(i=1;i<=n;i++)
    {
        printf("%d ",i);
    }
}

OUTPUT
Enter the last natural number
9
All natural number from 1to 9 is 
1 2 3 4 5 6 7 8 9


Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language