Advertisement
CODE_TOLD_FAST

ISO_C/03/B.SH

Jan 19th, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1.  
  2. ##:         VIDEO: https://www.youtube.com/watch?v=TnrRkzC1_RU
  3. ##:       CHANNEL: CODE_TOLD_FAST
  4. ##: PASTEBIN_NAME: ISO_C/03/B.SH
  5. ##:  PASTEBIN_URL: ( See Youtube Video Description For Link )
  6.  
  7.  
  8. ################################################################
  9. ## B.SH  (B is for BUILD script  )
  10. ## M.C   (M is for  MAIN program )
  11. ## S.C   (S is for   SUB program )
  12. ################################################################
  13.  
  14. gcc -std=c11 -x c   M.c -o   M.exe  ## Main Program
  15. gcc -std=c11 -x c   S.c -o   S.exe  ##  Sub Program
  16.  
  17. ./M.exe ## Run Main Program
  18.  
  19. read -p "[Press_Enter_To_Continue]:"
  20.  
  21. ################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement