fork download
  1. typedef struct dog_ {
  2. float height;
  3. int weight;
  4. } dog;
  5. int main() {
  6. dog Spot = { 25.6, 45};
  7. dog Data[3] = { Spot, {6.5, 7} };
  8. return 0;
  9. }
Success #stdin #stdout 0.02s 1716KB
stdin
Standard input is empty
stdout
Standard output is empty