程序编译成功并打印1000甚至没有foo()从我们的main()函数调用函数.这怎么可能?
foo()
main()
#include<stdio.h> void foo() { #define ans 1000 } int main() { printf("%d", ans); return 0; }
c io c-preprocessor
c ×1
c-preprocessor ×1
io ×1