Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /*
  2. test by kyoung chip , jang
  3.  
  4. ./emcc p3.c -s WASM=1 -o p3.html
  5. ./emrun p3.html --no_browser --port 8080
  6. */
  7. #include <stdio.h>
  8.  
  9. void fn()
  10. {
  11. printf("\n\n\naa\n\n\n");
  12. }
  13.  
  14.  
  15. int
  16. main( int argc , char ** argv ) {
  17.  
  18. void (*p)();
  19.  
  20. p = fn;
  21. p();
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement