本人刚刚入门,请问这个错在哪里了呢?
#include <stdio.h>#define d "219"
main()
{
printf("%s",d);
getchar();
}
#include <stdio.h>
#define d "219"
int main()
{
printf("%s",d);
getchar();
return 0;
}
#include <stdio.h>
#define d "219"
int main()
{
printf("%s",d);
getchar();
return 0;
}
如果你学的是零习C的话,改成带你学C带你飞! 没发现错误啊。若说有的话,难道是main函数没有写返回值类型?这个与编译器有关,有的编译器是可以不写的啊
#include <stdio.h>
#define d "219"
int main()
{
printf("%s",d);
getchar();
return 0;
}
你贴出来你的错误提示吧。 你没有return返回值 sunrise085 发表于 2020-3-17 09:45
没发现错误啊。若说有的话,难道是main函数没有写返回值类型?这个与编译器有关,有的编译器是可以不写的啊 ...
--------------------Configuration: h - Win32 Debug--------------------
Linking...
LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16
Debug/h.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
h.exe - 1 error(s), 0 warning(s) Juniorboy 发表于 2020-3-17 09:54
--------------------Configuration: h - Win32 Debug--------------------
Linking...
LIBCD.lib(winc ...
你用的是VC++吧。看看这个帖子
https://jingyan.baidu.com/article/a24b33cd71a5d619fe002ba9.html 蒋博文 发表于 2020-3-17 09:50
你没有return返回值
刚才加上了,也是错的,就是这个#define这个预处理没整透,他后面是单个字符时加单引号,字符串时用双引号,然后单个字符的时候不加,这个规律我用了之后,总是出错。 sunrise085 发表于 2020-3-17 09:58
你用的是VC++吧。看看这个帖子
https://jingyan.baidu.com/article/a24b33cd71a5d619fe002ba9.html
可是我刚才找,没有LINK这个选项,我怀疑时我#define的用法不对 Juniorboy 发表于 2020-3-17 10:02
可是我刚才找,没有LINK这个选项,我怀疑时我#define的用法不对
这个程序,我运行了没问题。应该就是你那里软件设置的问题。 Juniorboy 发表于 2020-3-17 10:02
可是我刚才找,没有LINK这个选项,我怀疑时我#define的用法不对
入口不对,要新建控制台应用程序,不是窗口程序
sunrise085 发表于 2020-3-17 10:06
这个程序,我运行了没问题。应该就是你那里软件设置的问题。
好的,谢谢哈~
页:
[1]