Advertisement
dllbridge

Untitled

Jul 25th, 2024
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.49 KB | None | 0 0
  1.  
  2. #include   <stdio.h>
  3.  
  4. int n;
  5.    
  6. int foo();
  7.  
  8.  
  9. ////////////////////////////////////////////////////
  10. int main()                                        //
  11. {
  12.  
  13.  
  14.     printf("77 \n");
  15.     printf("%d \n", 77);   n = 243;
  16.     printf("n = %d\n", n);  
  17.    
  18.     n = foo();
  19.     printf("foo return %d \n", n );  
  20. }
  21.  
  22.  
  23. ////////////////////////////////////////////////////
  24. int foo()                                         //  
  25. {
  26.    
  27.    int n = 9911;
  28.    
  29.    printf("SONY\n");
  30.    
  31. return n;  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement