我是 C 程序和 linux 的新手,我们如何编译和运行这个程序?
我已经尝试过gcc example.c
了,./a.out
但它给出了一个错误input file cannot be opened
(我在 read 方法中写了这个错误)
// example.c
int main(int argc, char *argv[])
{
char* input = argv[1];
read(input);
char* output = argv[2];
write(output);
return 0;
}
谢谢。