fork download
  1. #include<stdio.h>
  2. #define f1(i,j) ++i*j;
  3. #define f2(k,1) i^j;
  4. int main()
  5. {
  6. int i=2,j=3;
  7. i=f1(i,f2(k,1));
  8. j=f2(j,f1(i,j));
  9. printf("%d %d",i,j);
  10. return 0;
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:7:3: warning: operation on ‘i’ may be undefined [-Wsequence-point]
  i=f1(i,f2(k,1));
   ^
prog.c:3:18: error: expected expression before ‘^’ token
 #define f2(k,i) i^j;
                  ^
prog.c:8:4: note: in expansion of macro ‘f2’
  j=f2(j,f1(i,j));
    ^~
stdout
Standard output is empty