Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. inline int test(void);
  4.  
  5. inline int test(void)
  6. {
  7.   return 1337;
  8. }
  9. int main(int argc, char *argv[])
  10. {
  11.   printf("%i\n", test());
  12.   return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement