fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. struct complex_type
  6. {
  7. double real;
  8. double imag;
  9. } number;
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
Standard output is empty