fork download
  1. #include <stdio.h>
  2. struct Data{
  3. int y;
  4. int m;
  5. int d;
  6. };
  7.  
  8. int main(void) {
  9. struct Data today={2022,4,25};
  10. printf("%d,%d,%d",today.y,today.m,today.d);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
2022,4,25