Guest User

Untitled

a guest
Sep 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <stdlib.h>
  2.  
  3. struct x {
  4. int this;
  5. int girlfriend;
  6. };
  7.  
  8. struct y {
  9. struct x a;
  10. };
  11.  
  12. int main(void){
  13. struct x understand;
  14. struct y get;
  15. int you;
  16.  
  17. if(you == understand.this){
  18. get.a.girlfriend;
  19. }
  20.  
  21. printf("It works!\n");
  22.  
  23. return 0;
  24. }
Add Comment
Please, Sign In to add comment