fork download
  1. struct F
  2. {
  3. F Add( F a, F b )
  4. {
  5. return { a.f + b.f };
  6. }
  7. float f;
  8. };
  9.  
  10. int main(){}
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
Standard output is empty