Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. /tmp/vincent [lafouaa@8c8590019283] [14:12]
  2. > cat Makefile
  3. all:
  4.     gcc hello.c
  5.  
  6. /tmp/vincent [lafouaa@8c8590019283] [14:12]
  7. > cat hello.c
  8. #include<stdio.h>
  9.  
  10. int main(void) {
  11.   puts("Hello");
  12.   return 0;
  13. }
  14.  
  15. /tmp/vincent [lafouaa@8c8590019283] [14:12]
  16. > make
  17. gcc hello.c
  18.  
  19. /tmp/vincent [lafouaa@8c8590019283] [14:12]
  20. > ./a.out
  21. Hello
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement