我不明白为什么这段代码有效.
int f(int,int); int main() { f(12,21); return 0; } int f(int,int b) { return 0; }
我如何在函数f(...)中使用第一个arg?
c++ syntax
c++ ×1
syntax ×1