C Language

May 15, 2023

How to use bigger number control statements in c language

program to use bigger number control statements in c language


#include<stdio.h>
int main()
{
    int c,d;
    printf("Enter tow number : ");
    scanf("%d %d",&a,&b);
    if(a>b)
    printf("Bigger number=%d\n",c);
    else
    printf("Bigger number=%d\n",d);
    return 0;
}

output


Enter tow number : 12
25
Bigger number=25

Steps Description

  1. Declare integer variable c and d
  2. printf inbuild function to display two value of variable c and d
  3. Evaluation of variable c and d to determine if less than d
  4. printf inbuild function to display value c bigger number

by : Ajaj Khan

Quick Summary:

use bigger number control statements in c language