Created
October 28, 2017 19:36
-
-
Save slimani-dev/91ec0a3ebabe68fd20a55901b408b4d4 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> | |
#include <stdlib.h> | |
int main() | |
{ | |
int a = 2; | |
int b = 1; | |
if( a > b){ | |
printf("a is bigger then b"); | |
}else{ | |
if( a == b){ | |
printf("a is equal to b"); | |
}else{ | |
printf("a is smaller then b"); | |
} | |
} | |
return 0; | |
} |
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> | |
#include <stdlib.h> | |
int main() | |
{ | |
int a = 1>2; | |
int b = 1<2; | |
printf("%d %d",a,b); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment