C中的printf函数

发布于 2024-10-06 12:47:22 字数 31 浏览 1 评论 0原文

c中的printf函数是按引用还是按值调用参数?

Does printf function in c calls argument by reference or by value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

最终幸福 2024-10-13 12:47:22

C 中的所有内容都是按值传递的。

即使看起来像是通过引用传递的东西(即指向变量的指针,以便您可以更改底层变量),实际上也是通过值传递的指针的

Everything in C is passed by value.

Even things that look like they're passed by reference (i.e., pointers to variables so that you can change the underlying variables) are in fact the values of the pointers being passed by value.

关于从前 2024-10-13 12:47:22

C 中没有按引用传递,一切都是按值或按值指向地址的指针

There's no pass by reference in C, everything is by value or pointer-to-address by value

为你鎻心 2024-10-13 12:47:22

引用调用不适用于 c 中。
正如在c中一样,我们无法创建任何变量的别名,因此这里支持按值调用或按指针调用机制。

call by reference is not applicable in c.
As in c we can't create alias of any variable,so eiher call by value or call by pointer mechanism is supported here..

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