gpt4 book ai didi

c - 当我尝试编译 C 时,Visual Studio 给出多个错误

转载 作者:行者123 更新时间:2023-11-30 21:01:45 25 4
gpt4 key购买 nike

#include <stdio.h>
int main(void){

int aNumber;
printf( "Enter a number:");
scanf( "%d", &aNumber);
printf( "You entered %d", aNumber );
getchar();

return 0;
}

嘿,我对编码真的很陌生,正在尝试使用 Visual Studio Express 编译一个简单的 C 程序。我确信这段代码没有语法错误,但它仍然给我带来错误。

Error 4 error C2143: syntax error : missing ';' before 'return'

Warning 3 warning C4024: 'printf' : different types for formal and actual parameter 1

Warning 1 warning C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

Warning 2 warning C4047: 'function' : 'const char *' differs in levels of indirection from 'int'

Warning 3 warning C4024: 'printf' : different types for formal and actual parameter 1

我不明白这个问题。

最佳答案

您需要在发布和 Debug模式下的项目属性中添加预处理器_CRT_SECURE_NO_WARNINGS,如图所示,然后即可完成。

enter image description here

关于c - 当我尝试编译 C 时,Visual Studio 给出多个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34408180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com