编程论坛
注册
登录
编程论坛
→
C语言论坛
编程为什么没有运行求大佬帮忙
往事23
发布于 2021-08-17 07:04, 1250 次点击
#include<studio.h>
int main()
{
printf<"(hello world\n");
return 0 ;
}
1 回复
#2
自由而无用
2021-08-17 08:59
//online parser:
https://www.bccn.net/run/
void exit(int status);
int system(const char *command);
int printf(const char *format, ...);
int mian(int argc, char *argv[])
{
printf("world hello!\n");
exit(0);
}
int main(int argc, char *argv[])
{
system("gcc -o v.out -nostartfiles -e mian *.c");
system("ls");
system("./v.out");
return 0;
}
#3
rjsp
2021-08-17 09:06
程序代码:
#include
<stdio.h>
int
main(
void
)
{
printf(
"
hello world\n
"
);
return
0
;
}
1