Skip to content

Instantly share code, notes, and snippets.

/main.c Secret

Created July 19, 2015 01:29
Show Gist options
  • Save anonymous/ae52bc7c9ad75023d879 to your computer and use it in GitHub Desktop.
Save anonymous/ae52bc7c9ad75023d879 to your computer and use it in GitHub Desktop.
my code
#include <stdio.h>
#include <stdbool.h>
int numr(int max) {
int num = 2;
scanf("%d", &num);
if (num > max) {
printf("option not available\n");
}
else {
return num;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment