运行时跳过的 C 函数
我的程序中有以下 C 代码:
printf("Test before print_foo()");
void print_foo(char board[ROW][COL]);
printf("Test after print_foo()");
其中 print_foo printf 是传入的二维字符数组,并导入了正确的 .c 和 .h 文件。
控制台输出只有两个 printf 语句。 调试时,运行时甚至不会进入 print_foo。
有什么想法吗?
I have the following C code in a program:
printf("Test before print_foo()");
void print_foo(char board[ROW][COL]);
printf("Test after print_foo()");
where print_foo printf's the passed in 2-D character array with proper .c and .h files imported.
Console output is only the two printf statements.
Debugging, the run-time never even steps into print_foo.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
该
void
前缀使中间行成为函数print_foo
的声明(括号内的char
意味着否则它将是无效语法) 。要调用print_foo
,请将中间行更改为print_foo(board);
(如果board
是您的命名方式)那个二维字符数组)。That
void
prefix is making the middle line into a declaration of functionprint_foo
(and thechar
within the parentheses means it would be invalid syntax otherwise). To just callprint_foo
, change the middle line toprint_foo(board);
(ifboard
is how you named that 2-D character array).对我来说这看起来像是一个函数声明 - 这就是为什么你的 foo-nction 没有被调用。
That looks like a function declaration to me - that's why your foo-nction is not being called.
你的中间行只是一个函数声明,而不是函数调用。
Your middle line is just a function declaration, not a function call.
如果你之前没有声明原型,那么你必须这样写:
简而言之,你必须在调用之前定义/声明 print_foo ,否则你的编译器将标记一个错误!
If you didn't declare the prototype previously then you have to write this :
In short you have to define/declare print_foo before invoking,or your compiler will flag an error !!
不是函数调用。这是一个声明。
你可能想要
is not a function call. It's a declaration.
You probably want