fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. int day;
  6. } Date;
  7. typedef struct
  8. {
  9. Date date;
  10. } Insert;
  11.  
  12. Insert insert;
  13.  
  14. int main(void) {
  15. // your code goes here
  16. scanf("%d", &insert.date.day);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2248KB
stdin
12
stdout
Standard output is empty