C Program to Read Two Integer and Find Which is Greater
In this article, we will learn how to find the large number between two numbers asked from the user. To write this program, we will need some basic concept of C programming (eg: if-else conditionals)
Algorithm – Finding the Large Number from Two Input Number
- Declare two integer variables called num1, and num2.
- Take 2 input numbers and keep them in the num1 and num2 variable using scanf() function.
- Compare between the two numbers and determine which is large and which is small using the C if-else statement.
- Display the indication which is the large and small number and who is greater than another.
C Program to Read Two Integer and Find Which is Greater
#include <stdio.h>
int main() {
int num1, num2;
printf("Enter number 1: ");
scanf("%d", &num1);
printf("Enter number 2: ");
scanf("%d", &num2);
if(num1 > num2) {
printf("%d is greater than %d\n", num1, num2);
} else if(num2 > num1) {
printf("%d is greater than %d\n", num2, num1);
} else {
printf("%d is equal to %d\n", num1, num2);
}
return 0;
}
- Save the file with .c file extension and run the program using your favorite IDE. You can see the output. Check the test case given below;
Sample Input | Sample Output |
---|---|
Enter number 1: 35 Enter number 2: 66 |
66 is greater than 35 |
Enter number 1: 55 Enter number 2: 10 |
55 is greater than 10 |
Enter number 1: 9 Enter number 2: 9 |
9 is equal to 9 |
General Learning Output (GLO)
- Declaration of C main function.
- declaration of integer variable.
- The syntax, uses, and function of if, else if, else statement in the program.
- Printing to the console depending on the if-else conditions.
- C program to print Integer & Decimal number given by user
- C Program to perform all arithmetic calculation
- C program to ask two numbers and find their sum
- C program to check a number is even, odd or zero
- C program to swap between two numbers
- C program to sum of natural numbers up to N
- C program to calculate the factorial of a number
- C program to make a multiplication table
- C program to calculate GCD of two numbers
- C program to calculate LCM of two numbers
- C program to count number of digits in a number
- C program to reverse a integer number
- C program to find the power of a number
- C program to check whether a number is palindrome or not
- C program to count and print prime numbers up to the N
- C program to check armstrong numbers
- C program to check armstrong numbers between two integers
- C program to find factors of a number
- C program to fined the size of all data types
- C program to print largest number among three numbers
- C program to check a number is positive or negetive
- C program to calculate the factorial of a number
- C program to form any kind of pyramid and stracture
- C program to find all the prime numbers between two numbers
- C program to check whether a number is prime or not
- C program to make a simple calculator
- C program to calculate the perimeter of a rectangle
- C program to calculate the area of a rectangle
- C program to calculate the diameter and area of a circle
- C program to convert kilometer to meter and centimeter
- C program to convert temperature celsius to fahrenheit
- C program to convert temperature fahrenheit to celsius
- C program to ask for days and convert into years, week and days
- C program to calculate the square root of a given number
- C program to find third angle of a triangle where two angles are given
- C program to calculate the area of a triangle
- C program to calculate area of an equilateral triangle
- C program to calculate average and percentage of result
- C program to calculate simple loan interest
- C program to compound loan interest
- C program to display fibonacci series of a number
- C program to swap two numbers without using third variable
- C program to print Hello World without using semicolon
- C program to insert assembly code and run it
- C program to printf Hello world without main() function
- C program to to calculate the multiplication of two matrix
- C program to convert decimal numbers into binary
- C program to form a triangle made with alphabet
- C program to form a triangle made with numbers
- C program to form a fibonacci triangle
- C program to convert a number into charecters
Happy Coding 🙂