fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct X {
  4. int v;
  5. } X;
  6.  
  7. int main()
  8. {
  9. X X;
  10. X.v = 7;
  11. printf("X.v:%d\n", X.v);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
X.v:7