Advertisement
thenewboston

C Programming Tutorial - 10 - Creating a Header File (pt. 2)

Aug 22nd, 2014
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "BuckysInfo.h"
  4.  
  5. int main()
  6. {
  7.     int girlsAge = (AGE / 2) + 7;
  8.     printf("%s can date girls %d years old", MYNAME, girlsAge);
  9.  
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement