fork download
  1. struct Coder {
  2. float **data;
  3. };
  4.  
  5. typedef Coder *AUTO;
  6.  
  7. int main()
  8. {
  9. AUTO mm = new Coder;
  10. mm->data = 0;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 3424KB
stdin
Standard input is empty
stdout
Standard output is empty