Advertisement
Guest User

Untitled

a guest
Nov 9th, 2012
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void f();
  4.  
  5. int
  6. main(void)
  7. {
  8.     f("hello");
  9.   return 0;
  10. }
  11.  
  12. void f(char *str)
  13. {
  14.     puts(str);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement