Advertisement
Guest User

example

a guest
May 11th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. struct prueba
  4. {
  5.     char a;
  6.     char b;
  7.     int c;
  8. };
  9.  
  10. int main()
  11. {
  12.     struct prueba x;
  13.     printf("%d\n", &x.a);
  14.     printf("%d\n", &x.b);
  15.     printf("%d\n", &x.c);
  16.     getchar();
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement