Advertisement
dllbridge

Untitled

Sep 27th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.79 KB | None | 0 0
  1.  
  2. #include <stdio.h>
  3.  
  4.  
  5. void  foo(int *p, int *p1);
  6.  
  7.  
  8. ////////////////////////////////////////////////
  9. int main()                                    //
  10. {
  11.     int a =  15,
  12.         b =  26;
  13.  
  14.     foo(&a, &b);
  15. }
  16.  
  17.  
  18. ///////////////////////////////////////////////
  19. void  foo(int *p, int *p1)                   //
  20. {
  21.    
  22.     int &r1 = *p ,
  23.         &r2 = *p1;  
  24.      
  25.     if(r1 < r2) printf("%d\n", r2);  
  26.     else        printf("%d\n", r1);
  27. }
  28.  
  29.  
  30.  
  31.  
  32.  
  33. /*
  34.  
  35. #include <stdio.h>
  36.  
  37. ////////////////////////////////////////////////
  38. void foo(int* p1, int* p2)
  39. {
  40.     int   b ;
  41.    
  42.     b  = *p1;
  43.    *p1 = *p2;
  44.    *p2 =  b ;
  45. }
  46.  
  47.  
  48.  
  49. ///////////////////////////////////////////////
  50. int main()
  51. {
  52.     int a = 21,
  53.         n = 25;
  54.  
  55.     foo(&a, &n);
  56.    
  57.     printf("a = %d, n = %d\n", a, n);
  58. }
  59.  
  60. */
  61.  
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement