在 anjuta 中,使用什么来代替 header 来让简单的 C 程序给出输出?我是编程新手,之前只使用过 turbo c。提前致谢。
答案1
Anjuta 只是一个 IDE。我假设你正在寻找类似的东西:
#include <stdio.h>
int main(void)
{
printf("Hello, world!\n");
return 0;
}
将其保存到名为 helloworld.c 的文件中并进行编译。它应该可以运行。
答案2
您应该使用 stdio.h,而不是 conio.h。conio.h 特定于控制台,而 stdio 是标准输入/输出。如果您所做的只是字符获取,您会在 stdio.h 中找到 getc() 等。