fork(1) download
  1. struct X
  2. {
  3. int a;
  4. int b;
  5. };
  6.  
  7. int f(X x)
  8. {
  9. return x.a + x.b;
  10. }
  11.  
  12. int main()
  13. {
  14. int n = f({1, 2});
  15. }
Success #stdin #stdout 0s 2924KB
stdin
Standard input is empty
stdout
Standard output is empty