#include <stdio.h> #define foo(x,y) x/y +x int main() { int i=-6,j=3; printf("%d",foo(i+j,3)); }
问题; 这段代码给出了答案 -8
是不是在数学上返回-4 .. 请解释..帮助
c
c ×1