关于vs2017用C语言写报错的问题
本帖最后由 yjwsthhh 于 2020-4-25 16:15 编辑错误 LNK2019 无法解析的外部符号 _main,该符号在函数 "int __cdecl invoke_main(void)" (?invoke_main@@YAHXZ) 中被引用
错误 LNK1120 1 个无法解析的外部命令
代码无论简单还是复杂都报这个错
我找网上说的在项目属性->配置属性->常规->目标文件扩展名改为.dll并且把下面的配置类型改为动态库,虽说没有上面的两个错误了,但是一开始就说无法启动程序 ~~~不是有效的Win32应用
求大佬们指点迷津 是不是有多个main()函数入口导致的,检查一下main函数是不是有问题。 这你说要我们怎么帮你?要我们尽可能的去猜你现在遇到的问题吗?
盲猜一个,你把 main 写成了 mian
本帖最后由 yjwsthhh 于 2020-4-25 17:07 编辑
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#define LEN sizeof(struct student)
struct student *creat();
void print();
struct student {
int num;
float score;
struct student *next;
};
int n;
struct student *creat() {
struct student *head;
struct student *p1, *p2;
p1 = p2 = (struct student*)malloc(LEN);
printf("please enter the num:");
scanf("%d", &p1->num);
printf("please enter the score:");
scanf("%d", &p1->score);
head = NULL;
n = 0;
void mian() {
struct student *stu;
stu = creat();
print(stu);
printf("\n\n");
system("pause");
}
while (p1->num) {
n++;
if (n == 1) {
head = p1;
}
else {
p2->next = p1;
}
p2 = p1;
p1 = (struct student*)malloc(LEN);
printf("please enter the num:");
scanf("%d", &p1->num);
printf("please enter the score:");
scanf("%d", &p1->score);
}
p2->next = NULL;
return head;
}
void print(struct student*head) {
struct student*p;
printf("\nThere are %d records\n", n);
p = head;
if (head) {
do {
printf("学号为%d的成绩是:%d\n", p->num, p->score);
p = p->next;
} while (p);
}
}
抱歉!
比如这个小甲鱼以前视频里提到过的,依然是这两个错误。 刚刚在这里少打了一段void mian() {
struct student *stu;
stu = creat();
print(stu);
printf("\n\n");
system("pause");
} SugarCane88 发表于 2020-4-25 16:48
是不是有多个main()函数入口导致的,检查一下main函数是不是有问题。
我只敲了一个main上去呀 yjwsthhh 发表于 2020-4-25 17:08
刚刚在这里少打了一段void mian() {
struct student *stu;
stu = creat();
我一天中要说你们多少遍,学编程要认真
你说你把 main 写成 mian,我能怎么办?
yjwsthhh 发表于 2020-4-25 17:11
我只敲了一个main上去呀
main
mian 人造人 发表于 2020-4-25 17:14
main
mian
抱歉抱歉,这个是打错了,其他的很短的程序依然是这样的,比如:#include<stdio.h>
void main()
{
printf("请输入分数:");
}
yjwsthhh 发表于 2020-4-25 17:18
抱歉抱歉,这个是打错了,其他的很短的程序依然是这样的,比如:#include
void main()
复制这个
#include <stdio.h>
int main(void) {
printf("hello world!\n");
return 0;
}
人造人 发表于 2020-4-25 17:20
复制这个
还是不行,还是那两个错误点 yjwsthhh 发表于 2020-4-25 17:26
还是不行,还是那两个错误点
重新建立一个项目 人造人 发表于 2020-4-25 17:26
重新建立一个项目
多谢大佬!感激涕零!看来原来那个项目不行了 yjwsthhh 发表于 2020-4-25 17:30
多谢大佬!感激涕零!看来原来那个项目不行了
因为你之前把 main 写成 mian 发现不了,而是去乱设置项目
人造人 发表于 2020-4-25 17:36
因为你之前把 main 写成 mian 发现不了,而是去乱设置项目
多谢您给我上的这一课!{:5_109:} yjwsthhh 发表于 2020-4-25 17:03
抱歉!
比如这个小甲鱼以前视频里提到过的,依然是这两个错误。
跑了一下您的代码,除了main()入口,还是有很多问题。 SugarCane88 发表于 2020-4-26 07:54
跑了一下您的代码,除了main()入口,还是有很多问题。
这里我没按小甲鱼的方法,把那几个函数放在一个main里了做了遍新的,以下的代码,亲测可以实现
/*************************************/
//创建一个单向表单,里面包含学号、成绩
//通过一个个输入学号和成绩存在各节点
//如果输入学号为0表示退出建立新节点
//创建完表单后,将对应学号的对应成绩打印
/*************************************/
#include<stdio.h>
#include<stdlib.h>
struct stu {
int num;
int grade;
struct stu*next;
};
void main() {
struct stu *p1, *p2, *head=NULL,*temp;
p1 = (struct stu*)malloc(sizeof(struct stu));
printf("Please enter the num:");
scanf("%d", &p1->num);
if (p1->num != 0) {
printf("PLease enter the grade:");
scanf("%d", &p1->grade);
}
p2 = p1;
int n = 0;
while (p1->num != 0) {
n++;
if (n == 1) {
head = p1;
}
p1 = (struct stu*)malloc(sizeof(struct stu));
printf("Please enter the num:");
scanf("%d", &p1->num);
p2->next = &p1->num;
if (p1->num==0) {
break;
}
else {
printf("PLease enter the grade:");
scanf("%d", &p1->grade);
}
p2 = p1;
}
p2->next = NULL;
int i;
if (n == 0) {
printf("无学号输入\n");
}
else {
printf("一共有%d个学生\n", n);
for (i = 1, temp = head; temp != NULL; i++) {
printf("num:%d grade:%d\n", temp->num, temp->grade);
temp=temp->next;
}
}
}
页:
[1]