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