Skip to content

Instantly share code, notes, and snippets.

@dbc2201
Created November 13, 2018 07:25
Show Gist options
  • Save dbc2201/6d9cd0f12dc85690e07e7d73bd3c6644 to your computer and use it in GitHub Desktop.
Save dbc2201/6d9cd0f12dc85690e07e7d73bd3c6644 to your computer and use it in GitHub Desktop.
#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