Advertisement
dllbridge

Untitled

Mar 26th, 2024
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1.  
  2. #include   <stdio.h>
  3.  
  4.  
  5.  
  6.  
  7.  
  8. ///////////////////////////////////////////////////
  9. int main()                                       //
  10. {
  11.    
  12.     int  n    =   4 ;
  13.     int *p    =  &n ;
  14.  
  15.     printf(" n = %d  \n",  n);
  16.     printf(" p = %d  \n",  p);
  17.     printf("*p = %d  \n", *p);  
  18.     printf("&p = %d  \n", &p);         
  19. }
  20.  
  21.  
  22.  
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement