Advertisement
dllbridge

Untitled

Oct 12th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.94 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include   <stdio.h>
  5.  
  6.  
  7.  
  8. int _foo(int, int);
  9.  
  10. char sz[67] = "n  =  %4d\n";
  11.  
  12. /////////////////////////////////////////////
  13. int main()                                 //  
  14. {
  15.    
  16.     int n = _foo(5, 20);
  17.                
  18.     printf("const %4d\n",      77);    
  19.     printf("_foo  %4d\n",       n);
  20.     printf(sz           , 100 + n);
  21.      
  22. return 0;
  23. }
  24.  
  25.  
  26.  
  27.  
  28. ////////////////////////////////////////////
  29. int _foo(int n1, int n2)                  //  
  30. {
  31.    
  32. return 661 + n1 + n2;  
  33. }
  34.  
  35.  
  36.  
  37. /*
  38.  
  39.  
  40. #include   <stdio.h>
  41.  
  42.  
  43.  
  44. int _foo();
  45.  
  46.  
  47. /////////////////////////////////////////////
  48. int main()                                 //  
  49. {
  50.    
  51.     int n = 12;
  52.                
  53.     printf("const %3d\n",     77);  
  54.     printf("_foo  %3d\n", _foo());
  55.     printf("n  =  %3d\n",     n );
  56.      
  57. return 0;
  58. }
  59.  
  60.  
  61.  
  62.  
  63. ////////////////////////////////////////////
  64. int _foo()                                //  
  65. {
  66.    
  67. return 661;  
  68. }
  69.  
  70. */
  71.  
  72.  
  73.  
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement