当我尝试在 Visual Studio 2012 Ultimate 中使用 C 语言中的 scanf 时。“无法声明字符”错误由编译器给出。
int i;
scanf("%d",&i);//identifier declareded "i"
否则没有错误
int i=13;
printf("%d",i);//13
当我尝试在 Visual Studio 2012 Ultimate 中使用 C 语言中的 scanf 时。“无法声明字符”错误由编译器给出。
int i;
scanf("%d",&i);//identifier declareded "i"
否则没有错误
int i=13;
printf("%d",i);//13