编程论坛
注册
登录
编程论坛
→
C语言论坛
C语言系统找不到指定的文件怎么整
Ycx0721
发布于 2021-10-22 11:21, 1219 次点击
#include<stdio.h>
void main() {
printf("J");
}
这都输出不了,怎么整。
1 回复
#2
自由而无用
2021-10-22 11:59
try this:
//online parser:
https://www.bccn.net/run/
程序代码:
#include
<stdio.h>
int
main(
int
argc,
char
*argv[])
{
puts(
"
I m using online c-program parser!
"
);
return
0
;
}
output sample:
I m using online c-program parser!
#3
Ycx0721
2021-10-22 18:59
感谢
1