Advertisement
Guest User

static test

a guest
Jan 19th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. dragonfly$ cat test.c
  2. #include <stdio.h>
  3.  
  4. int
  5. main(void)
  6. {
  7. printf("Test\n");
  8. return 0;
  9. }
  10. dragonfly$ gcc -static test.c -o test
  11. dragonfly$ du -h test
  12. 0B test
  13. dragonfly$ ./test
  14. Test
  15. dragonfly$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement