fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. struct a
  6. {
  7. int a;
  8. struct b
  9. {
  10. int a;
  11. char b;
  12. }b;
  13.  
  14. }
  15.  
  16. x[]={1,'a','x','A',4,'b'};
  17. printf("%d",x[1]);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 4324KB
stdin
Standard input is empty
stdout
65