Advertisement
dllbridge

Untitled

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