Advertisement
Guest User

Untitled

a guest
May 25th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. ------file1.c------------
  2. #include <stdio.h>
  3.  
  4. int main(void){
  5.     UndeclaredFunction();
  6.     return 0;
  7. }
  8. --------------------------
  9.  
  10. ----------file2.c---------
  11. int UndeclaredFunction(){
  12.     printf("Hello world\n");
  13.     return 0;
  14. }
  15. --------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement