求解 哪里错了。谢谢!!
#include <stdio.h>
/* 考虑一下哪个输出该用无参函数哪个输出该用有参函数呢? */
int wucan()
{
printf("%s\n","小明在慕课网上学习");
return 0;
}
int youcan(int n)
{
printf("小明在慕课网上已经学习了%d门课程",n);
return 0;
}
int main()
{
wucan();
youcan(5);
return 0;
}