Advertisement
Guest User

Untitled

a guest
Sep 14th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #ifdef __cplusplus
  2. extern "C"
  3. {
  4. #endif
  5.  
  6. #include <stdio.h>
  7. #include "hello.h"
  8. int c_main(int argc, char *argv[])
  9. {
  10. (void)argc;
  11. (void)argv;
  12. printf("Hello World (c)\n");
  13. return 0;
  14. }
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement