fork download
  1. #include<stdio.h>
  2. int func1(int);
  3. int main()
  4. {
  5. int k=35;
  6. k = func1(k=func1(k=func1(k)));
  7. printf("k=%d", k);
  8. return 0;
  9. }
  10. int func1(int k)
  11. {
  12. k++;
  13. return k;
  14. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
k=38