Guest User

Untitled

a guest
Jun 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. void sub1(int *);
  3. void sub2(int *);
  4. int main(int argc, char *argv[]){
  5. sub1(argv[1]);
  6. sub2(argv[2]);
  7. return 0;
  8. }
  9.  
  10. void sub1(int in){
  11. printf("This is sub1\nThis sub contains: %s", in);
  12. }
  13.  
  14. void sub2(int in){
  15. printf("This is sub2\nThis sub contains: %s", in);
  16. }
Add Comment
Please, Sign In to add comment