为什么我自己写一遍,老师的代码却没有任何输出?
#include<stdio.h>
//自定义函数 say hello
int sayhello()
{
printf("%s\n","慕课网的小伙伴们,大家好");
return 0;
}
//曾经的主函数
int main()
{
return 0;
}
#include<stdio.h>
//自定义函数 say hello
int sayhello()
{
printf("%s\n","慕课网的小伙伴们,大家好");
return 0;
}
//曾经的主函数
int main()
{
return 0;
}
2016-07-02
举报