Skip to content

Commit aa32889

Browse files
Merge pull request seeditsolution#37 from Bharat0011/patch-1
GreaterNo
2 parents 93aa0ba + 5a6a679 commit aa32889

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

greaterno.

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include<stdio.h>
2+
int main()
3+
{
4+
//Fill the code
5+
int num1, num2;
6+
scanf(“%d %d”,&num1,&num2);
7+
if(num1 > num2)
8+
{
9+
printf(“%d is greater”,num1);
10+
}
11+
else
12+
{
13+
printf(“%d is greater”,num2);
14+
}
15+
return 0;
16+
}

0 commit comments

Comments
 (0)