#include<stdio.h> //自定义函数 say hello int sayhello() { printf("%s\n","慕课网的小伙伴们,大家好"); return 0; } //曾经的主函数 int main() { return 0; }
int sayhello()有调用吗?