Advertisement
dllbridge

Untitled

Oct 23rd, 2020
2,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include <stdio.h>
  5.  
  6.  
  7. int SONY();  
  8.  
  9.  
  10. ///////////////////////////////////////////////
  11. int main()                                   //  
  12. {
  13.    
  14.     //int n = SONY();                           //   4 bytes
  15.    
  16.    
  17.     printf("n = %d, %s", SONY(), "SONY");
  18. }
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. ////////////////////////////////////////////////
  26. int SONY()                                    //
  27. {
  28.       int n = 299;
  29.    
  30.      
  31.      
  32. return n;    
  33. }
  34.  
  35.  
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement