Guest User

Untitled

a guest
Jun 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. #define AGELIMIT 21
  4. #define MYNAME "Brad Garrison"
  5. #define myAge 16
  6. #define PI 3.14159
  7.  
  8. int main (int argc, const char * argv[]) {
  9. // insert code here...
  10. if (myAge < AGELIMIT) {
  11. printf("I'm below the age limit!\n");
  12. }else {
  13.  
  14. printf("I'm above the age limit =[\n");
  15. }
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment