Do-while loop

C program to display natural numbers from 1 to n | 5 different ways

C program to display natural numbers from 1 to n

In this tutorial, we will discuss the C program to display natural numbers from 1 to n through different 5 ways

Display Natural numbers

In this post, we are going to learn how to print natural number 1 to entered number in different 5 ways

C code to print  natural numbers Using for loop

This program allows the user to enter a maximum number. and then, it displays the natural numbers from 1 to given number using for loop in C language

Program 1

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num,i;
    printf("Enter the Maximum number: \n");
    scanf("%d",&num); //get input from user

    printf("First %d Natural numbers are: \n",num);
    for(i=1; i<=num; i++){
        printf("%d",i);
        printf(" ");
    }
    getch();
    return 0;
}

When the above code is executed it produces the following output

Enter the maximum number for num: 20
First 20 Natural numbers are::
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 17 18 19 20

 

C code to print natural numbers Using while loop

This program allows the user to enter a maximum number. and then, it displays natural numbers from 1 to given number using while loop in C language

Program 2

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num,i;
    printf("Enter the Maximum number: \n");
    scanf("%d",&num); //get input from user

    printf("First %d Natural numbers are: \n",num);

    i=1;
    while(i<=num){
        printf("%d",i);
        printf(" ");
         i++;
    }
    getch();
    return 0;
}

When the above code is executed it produces the following output

Enter the maximum number:
24
First 24 Natural numbers are:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

 

C code to display natural numbers Using do-while loop

This program allows the user to enter a maximum number. and then, it displays natural numbers from 1 to given number using do while loop in C language

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num,i;
    printf("Enter the Maximum number: \n");
    scanf("%d",&num); //get input from user

    printf("First %d Natural numbers are: \n",num);

    i=1;
   do{
        printf("%d",i);
        printf(" ");
         i++;
    } while(i<=num);
    getch();
    return 0;
}

When the above code is executed it produces the following output

Enter the maximum number:
15
First 15 natural numbers are:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15

 

C code to display natural numbers Using function

Program 4

This program allows the user to enter a maximum number. and then,it displays natural numbers from 1 to given number using the function in C language

#include <stdio.h>
#include <stdlib.h>
int naturalNum(int num);
int main()
{
    int num;
    printf("Enter the Maximum number: \n");
    scanf("%d",&num); //get input from user

    printf("First %d Natural numbers are: \n",num);
    int result=naturalNum(num);
    printf("%d",result);

    getch();
    return 0;
}
int naturalNum(int num){
    int i;
    for(i=1; i<num; i++){
printf("%d",i);
  printf(" ");
    }



}


When the above code is executed it produces the following output

Enter the Maximum number:
12
First 12 Natural numbers are:
1 2 3 4 5 6 7 8 9 10 11 12

 

C code to display natural numbers Using recursion

This program allows the user to enter a maximum number. and it displays natural numbers from 1 to given number using recursion in C language

Program 5

#include <stdio.h>
#include <stdlib.h>
int naturalNum(int lower_Limit, int upper_Limit);
int main()
{
 int lower_Limit=1,upper_Limit;
    printf("Enter the Maximum number: \n");
    scanf("%d",&upper_Limit); //get input from user

    printf("First %d Natural numbers are: \n",upper_Limit);


    naturalNum(lower_Limit,upper_Limit);

    getch();
    return 0;
}
int naturalNum(int lower_Limit,int upper_Limit){
    if(lower_Limit>upper_Limit)
        return;
    printf("%d",lower_Limit);
    printf(" ");
naturalNum(lower_Limit+1,upper_Limit);
    }




When the above code is executed it produces the following output

Enter the naximum number:
12
First 12 Natural numbers are:
1 2 3 4 5  7 8 9 10 11 12

 

Similar post

C++ code to display natural numbers from 1 to n

Java code to display natural numbers from 1 to n

Python  code to display natural numbers from 1 to n

 

Suggested post

for loop in C language

while loop in C language

do-while loop in C language

Function in C language

Recursion in C language

 

 

 

 

 

Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.