Created
November 13, 2018 07:25
-
-
Save dbc2201/6d9cd0f12dc85690e07e7d73bd3c6644 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() | |
{ | |
int number = 48; | |
if ( number > 48 ) | |
{ | |
printf("The number you entered is %d.\n", number); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment