谁能告诉我用C编程的几个实例,速求

2025-03-30 18:27:51
推荐回答(2个)
回答1:

#include
main()
{
printf("hello world!\n");

}

回答2:

#include
int main()
{
printf("hello world!\n");
return 0;
}