fork download
  1. #include <stdio.h>
  2. typedef struct {
  3. int year;
  4. int month;
  5. int day;
  6. }Date;
  7. int main(void) {
  8. Date today={2024,10,23};
  9.  
  10.  
  11. printf("%d %d %d",today.year,today.month,today.day);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
2024 10 23