Advertisement
dllbridge

Untitled

Nov 22nd, 2024 (edited)
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.13 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. #include   <stdio.h>
  6.  
  7.  
  8. void foo(int n);    
  9.  
  10. ///////////////////////////////////////////
  11. int main()                               //  
  12. {
  13.    
  14.     int n = 9;
  15.    
  16.     foo(n);
  17.    
  18.     printf("address of n from main = %d\n", &n);
  19. }
  20.  
  21.  
  22.  
  23. ///////////////////////////////////////////
  24. void foo(int n)                          //
  25. {
  26.      
  27.      n = n + 1;
  28.  
  29.      printf("address of n = %d from foo\n", &n);
  30. }
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. /*
  53.  
  54. #include   <stdio.h>
  55.  
  56.  
  57. int foo(int n);    
  58.  
  59. ///////////////////////////////////////////
  60. int main()                               //  
  61. {
  62.    
  63.     int nSerial = 0,
  64.         nOst    = 0,
  65.         n       = 0;
  66.        
  67.     scanf("%d", &n);    
  68.    
  69.     nSerial = n/7;
  70.     nOst    = n%7;
  71.    
  72.     int n2 = foo(nOst);
  73.    
  74.     printf("n2 = %d \n", n2);
  75. }
  76.  
  77.  
  78.  
  79. ///////////////////////////////////////////
  80. int foo(int n)                           //
  81. {
  82.     int nSumm  =    0,
  83.         nPrice = 1000;
  84.    
  85.     for(int i = 1; i <= n; i++)
  86.     {
  87.         nSumm = nSumm + nPrice;    
  88.        
  89.         nPrice = nPrice - 55;
  90.     }
  91.    
  92. return nSumm;    
  93. }
  94.  
  95. */
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement