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