fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. struct Baggage{
  5. int id;
  6. char owner[21];
  7. double weight;
  8. };
  9. return 0;
  10. }
Success #stdin #stdout 0s 5404KB
stdin
Standard input is empty
stdout
Standard output is empty