Advertisement
Guest User

Untitled

a guest
May 27th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. int main(){
  3.  
  4. struct s1{
  5. int a;
  6. struct s2{
  7. int b;
  8. };
  9. };
  10. struct s1 x;
  11. struct s2 y;
  12. x.a = 11;
  13. y.b = 44;
  14. printf("%d\n", x.a);
  15. printf("%d\n", y.b);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement