fork download
  1. #include <stdio.h>
  2.  
  3. inline int vd(int x, int y) {
  4. static int a = 10;
  5. return (x > a || y) ? x - a + y++ : x + y;
  6. }
  7.  
  8. int main() {
  9. int m = 5, n = 8;
  10.  
  11. printf("%d\n", vd(m, n));
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
3