fork download
  1. #include <stdio.h>
  2. struct S {
  3. int S;
  4. };
  5. int f(struct S s) {
  6. return --s.S;
  7. }
  8. int main(void) {
  9. int i;
  10. struct S S = { 2 };
  11. i = f(S);
  12. printf("%d",i);
  13. return 0;
  14. }
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
1