Advertisement
dllbridge

Untitled

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