fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct foo { int foo; } foo;
  4.  
  5. int main(void)
  6. {
  7. foo foo = { 1 };
  8. printf("%i\n", foo.foo);
  9. }
  10.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
1