Created
July 29, 2019 09:47
-
-
Save sachinsaxena25/e54a2e4a38107cb4c1df2990f2ce99fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main(void){ | |
int a = 0; | |
int b = 0; | |
int c = 0; | |
printf("please enter the number:\n"); | |
scanf("%d", &a); | |
printf("please enter the number:\n"); | |
scanf("%d", &b); | |
c = a > b ? a : b; | |
printf("Largest Number is: %d", c); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment