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