Advertisement
dllbridge

Untitled

Apr 17th, 2024
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1.  
  2. #include<stdio.h>
  3.  
  4.  
  5.  
  6.  
  7.  
  8. int main()
  9. {
  10.    
  11.     int n = 15;
  12.    
  13.     int &r = n;             // 1 случай использования &
  14.    
  15.     printf( "r =%d\n",  r);
  16.     printf("&r =%d\n", &r);    
  17.     printf("&n =%d\n", &n);    
  18. }
  19.  
  20.  
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement