运行时跳过的 C 函数

发布于 2024-08-12 13:08:47 字数 283 浏览 5 评论 0原文

我的程序中有以下 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

一曲爱恨情仇 2024-08-19 13:08:47

void 前缀使中间行成为函数 print_foo 的声明(括号内的 char 意味着否则它将是无效语法) 。要调用print_foo,请将中间行更改为print_foo(board);(如果board是您的命名方式)那个二维字符数组)。

That void prefix is making the middle line into a declaration of function print_foo (and the char within the parentheses means it would be invalid syntax otherwise). To just call print_foo, change the middle line to print_foo(board); (if board is how you named that 2-D character array).

睡美人的小仙女 2024-08-19 13:08:47

对我来说这看起来像是一个函数声明 - 这就是为什么你的 foo-nction 没有被调用。

That looks like a function declaration to me - that's why your foo-nction is not being called.

靖瑶 2024-08-19 13:08:47

你的中间行只是一个函数声明,而不是函数调用。

Your middle line is just a function declaration, not a function call.

深海少女心 2024-08-19 13:08:47

如果你之前没有声明原型,那么你必须这样写:

printf("Test before print_foo()");
void print_foo(char board[ROW][COL]);
print_foo(board);
printf("Test after print_foo()");

简而言之,你必须在调用之前定义/声明 print_foo ,否则你的编译器将标记一个错误!

If you didn't declare the prototype previously then you have to write this :

printf("Test before print_foo()");
void print_foo(char board[ROW][COL]);
print_foo(board);
printf("Test after print_foo()");

In short you have to define/declare print_foo before invoking,or your compiler will flag an error !!

匿名。 2024-08-19 13:08:47
void print_foo(char board[ROW][COL]);

不是函数调用。这是一个声明。

你可能想要

print_foo(board);
void print_foo(char board[ROW][COL]);

is not a function call. It's a declaration.

You probably want

print_foo(board);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文