这个是没错误运行不了,咋整
代码如下:
include<stdio.h>
int Function();
int main()
{
printf("this step is before the Function\n");
Function();
printf("this step is end of the Function\n");
return 0;
}
int Function()
{
printf("this step is in the Function\n");
}
这个是未定义标识符,怎么改
代码如下:
include<stdio.h>
void DrinkMilk(char* cBottle);
int main()
{
char vPoke[] = "";
printf("Mother wanna give the baby:");
scanf_s("%s",&cPoke);
DrinkMilk(cPoke);
return 0;
}
void DrinkMilk(char* cBottle)
{
printf("The Baby drink the %s\n", cBottle);
}
int Function()
函数需要返回值,在函数结尾加return 0;