为什么在scanf函数中需要&符号(&).以下C代码中的输出或错误类型(编译或运行时)是什么?
#include <stdio.h> void main() { int a; printf("enter integer:"); scanf("%d",a); }
解决方法
&在C中是一个返回操作数地址的运算符.可以这样考虑一下,如果你只是给scanf变量a而没有&,它将通过值传递给它,这意味着scanf将无法设置它的值供你看.通过引用传递它(使用&实际将指针传递给a)允许scanf设置它,以便调用函数也可以看到更改.
关于具体的错误,你无法真正说出来.行为未定义.有时,它可能会默默地继续运行,而您不知道scanf在程序中的某处更改了某些值.有时它会导致程序立即崩溃,就像在这种情况下:
#include <stdio.h> int main() { int a; printf("enter integer: "); scanf("%d",a); printf("entered integer: %d\n",a); return 0; }
编译它显示了这个:
$gcc -o test test.c test.c: In function ‘main’: test.c:6: warning: format ‘%d’ expects type ‘int *’,but argument 2 has type ‘int’
$./test enter integer: 2 Segmentation fault