Skip to main content

C Program to Print first N Even Natural Number/in Reverse Order

 C Program to Print first N Even Natural Number.

    In this example, we will find and print the first N even natural. Here we have used for loop to solve this program.

    

What are Natural Numbers?

Natural Numbers are all positive numbers starting from 1 to infinity. 

    For Example:  1,2,3,4,5,6,.............................,n are all natural numbers.

What are Even Numbers?

Even numbers are those numbers whose remainder is 0 when divided by 2.

    For Example: 2,4,6,8,10,.....,n are all even numbers.
 

PROGRAM:

#include<stdio.h>
#include<conio.h>
void main()
{
    int i,x;
    printf("Enter the value of N : ");
    scanf("%d",&x);
    for(i=1;i<=x;i++)
    {
        printf("%d",2*i);
    }
    getch();
}


OUTPUT:



C Program to Print First N Even Natural Number in Reverse Order.


PROGRAM

123

#include<conio.h>
#include<stdio.h>
int main()
{
    int i,x;
    printf("\nEnter the value of N");
    scanf("%d",&x);
    printf("\nPrinting first %d even number in reverse order.\n",x);
    for(i=x;i>=1;i--)
    {
    printf("%d\t",2*i);
    }
    return 0;
}


OUTPUT

C Program to Print First N Even Natural Number in Reverse Order.



NOTE: You Can Comment Your Code if you have solved differently and we will pin it in the comment section.  Let's Learn together. 


MOTTO: 

You Learn, I Learn together We Learn.

 


Comments

Popular posts from this blog

C Program to find the sum of the elements of a 2-D array.

 C Program to find the sum of the elements of a 2-D array.     In this example, we will find the sum of the elements of a 2-D array allowing the user to enter the row size and column size according to their requiremnts.      Here in the output we have entered a row  size 3 and column size 3. PROGRAM #include <stdio.h> #include <conio.h> void   main () {      int   a [ 50 ][ 50 ], r , c , i , j , sum = 0 ;      printf ( "Enter the row size and column size of the array :" );      scanf ( " %d%d " ,& r ,& c );      printf ( "Enter the elements of the array : " );      for ( i = 0 ; i < r ; i ++)     {          for ( j = 0 ; j < c ; j ++)       ...

C Program to find out the roots of a Quadratic Equation and also test for Real and Complex roots

 C Program to find out the roots of a Quadratic Equation  and also test for Real and Complex roots.       In this example, we will calculate the roots of the quadratic equation by testing for real and complex roots. We can test real and complex roots by checking these conditions : If b 2  −4 ac  < 0, then there are no real roots. If b 2  −4 ac  = 0, then both the roots are equal. If b 2  −4 ac  > 0, then roots are real and distinct.   PROGRAM TO FIND OUT THE ROOTS OF A QUADRATIC EQUATION. #include <stdio.h> #include <conio.h> #include <math.h> int   main () {      int   a , b , c , d ;      float   x , y ;      printf ( "Enter coefficient of x^2,x and constant : " );      scanf ( " %d   %d   %d " ,& a ,& b ,& c );      d = b * b ...

C Program to Check whether a given number is Perfect or Not

 C Program to Check whether a given number is Perfect or Not. In this exmaple we will learn to check a given number is a Perfect Number or not.  LOGIC OF PERFECT SQUARE NUMBER: At first we have declared variables i , num , sum=0 (value is initialized to zero).  Then we have inputted the number from the user and stored in num. After that we have to to add a loop i=1 till num/2 and to increment the iteration by 1. You all must be thinking why we have to run the loop till n um/2 because a number does not have any positive integer greater than the half of the number that is num/2 . Then we have to check whether the remainder of num%i is equal to zero or not. If it is equal then the value of i is a proper divisor of the number entered by the user and it is added to sum. Now we have to check if the sum of the proper divisors of the number equal to the original number. If it is equal then the number entered by the user is a perfect number otherwise it is not a perfect num...

C Program to Add Two Matrices Using Multi-dimensional Array.

C Program to Add Two Matrices Using Multi-dimensional Array.       In this example, we will add two matrices using multi-dimensional array. Two matrices can be added if they are equal means their order/dimensions must be same. Addition of matrices is performed by adding the corresponding elements of the two matrices.     Here in the Output we have  allowed the user to enter the row and column size of their matrices according to their requirements but they can enter the value of row size and column size less than 100. PROGRAM #include <stdio.h> #include <conio.h> int   main () {      int   row , column , i , j , a [ 100 ][ 100 ], b [ 100 ][ 100 ], c [ 100 ][ 100 ];      printf ( "Enter the row size of the matrices(max. value 100) : " );      scanf ( " %d " ,& row );      printf ( "Enter the co...

C program to read m x n matrix and calculate the Row sum and Column sum of the matrix.

 C program to read m x n matrix and calculate the Row sum and Column sum of the matrix.     In this example, we read a m x n matrix whose value would be entered by the user then the sum of row and column is calculated. Here in the example we have taken a matrix of order 3 x 2 whose row sum and column sum is displayed in the output screen. PROGRAM TO READ m x n MATRIX AND CALCULATE THE ROW SUM AND COLUMN SUM OF THE MATRIX: #include <stdio.h> #include <conio.h> void  main() {      int  i,j,m[100][100],row,column,rsum,csum=0;     printf( "Enter the row size of the matrix :" );     scanf( "%d" ,&row);     printf( "Enter the column size of the matrix :" );     scanf( "%d" ,&column);     printf( "Enter the Matrix : " );    ...