Guest User

Untitled

a guest
Nov 23rd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. hellomake.h
  2.  
  3. #include<stdio.h>
  4. {
  5. void myPrintHelloMake(void);//it function prototype
  6. }
  7.  
  8.  
  9. hellohackers.c
  10.  
  11. #include<stdio.h>
  12. int main()
  13. {
  14. // call a function in another file
  15. myPrintHelloHackers(); //function call
  16. return(0);
  17. }
  18.  
  19.  
  20. hellofunc.c
  21.  
  22. #include<stdio.h>
  23. void myPrintHelloMake(void) //function definition
  24. {
  25.  
  26. printf("Hello Welcome To HACKFEST!\n");
  27.  
  28. return;
  29. }
Add Comment
Please, Sign In to add comment