我们可以不使用main()函数编写c程序。为此,我们需要使用
让我们看一个不带main()函数即可打印“ hello”的简单程序。
#include<stdio.h>
#define start main
void start() {
printf("Hello");
}
输出:
Hello
我们可以不使用main()函数编写c程序。为此,我们需要使用
让我们看一个不带main()函数即可打印“ hello”的简单程序。
#include<stdio.h>
#define start main
void start() {
printf("Hello");
}
输出:
Hello
评论前必须登录!
注册