C中的printf函数
c中的printf函数是按引用还是按值调用参数?
Does printf function in c calls argument by reference or by value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
c中的printf函数是按引用还是按值调用参数?
Does printf function in c calls argument by reference or by value?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
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.
C 中没有按引用传递,一切都是按值或按值指向地址的指针
There's no pass by reference in C, everything is by value or pointer-to-address by value
引用调用不适用于 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..