Advertisement
CODE_TOLD_FAST

02/BUILD.SH

Jan 19th, 2020
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1.  
  2. //:         VIDEO: https://www.youtube.com/watch?v=kSsQtozz4iA
  3. //:       CHANNEL: CODE_TOLD_FAST
  4. //: PASTEBIN_NAME: 02/BUILD.SH
  5.  
  6. ##: Summary: Build both programs and call main program.
  7.  
  8. gcc -std=c11 -x c   M.C11 -o   M.exe  ## Main Program
  9. gcc -std=c11 -x c   S.C11 -o   S.exe  ##  Sub Program
  10.  
  11. ./M.exe ## Run Main Program
  12.  
  13. read -p "[Press_Enter_To_Continue]:"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement