Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以这是我的代码:
#include <stdio.h> main(){ int hi; hi = 3; printf("%d",&hi); }
输出为:“2686748”
我在 Windows 7 上使用“代码块”
有什么想法有什么问题吗?
"%d"告诉printf你输入一个整数。你给它的整数是&hi它的地址hi。如果你想要hi使用它的价值
"%d"
printf
&hi
hi
如果您打算打印 的值hi,只需将其传递给 printf,而不是其地址:
printf("%d", hi);
您可能会混淆printf,scanf后者要求其所有参数都是指针。
scanf