Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void runningMain(void) {
  4.  
  5. printf("Hello from runningMain\n");
  6. main();
  7. return;
  8. }
  9.  
  10.  
  11. int main (int argc, char *argv[]) {
  12.  
  13.  
  14. runningMain();
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement