Skip to content

Commit d6648ce

Browse files
author
Prateek6125
authored
Greaterno.
program to find the greatest of two numbers
1 parent c5c05c2 commit d6648ce

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Greaterno

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// C program to find the greatest of two numbers
2+
3+
#include<stdio.h>
4+
int main()
5+
{
6+
//Fill the code
7+
int num1, num2;
8+
scanf(“%d %d”,&num1,&num2);
9+
if(num1 > num2)
10+
{
11+
printf(“%d is greater”,num1);
12+
}
13+
else
14+
{
15+
printf(“%d is greater”,num2);
16+
}
17+
return 0;
18+
}

0 commit comments

Comments
 (0)