所以我通过终端使用PICO编写了这段代码......
#include<stdio.h>
#include<stdlib.h>
int main()
{
int lineCount =0;
int c;
while((c=getchar()) != EOF)
{
if (c=='\n'){
++lineCount;
printf("%d\t%c",lineCount,c);
}
}
exit(0);
}
/*print out the "c" which is the words you want to print and then print out
the line number before every new line, think of %d as placeholder */
所以现在我想使用这段代码并将其应用到&#34; hello world&#34; C中的脚本。在我的终端中,我编译了line_number
和hello world文件,并在1个文件夹中。我转到该文件夹并输入line_number < hello.c
,它给了我一个错误......
-bash: line_number: command not found
我的目标是将我的行号代码应用到我的hello world脚本中,以便我的hello world代码的每一行在开头都有一个数字。我的line_number代码也可能有问题,但如果我可以获得执行命令的帮助,我可以通过反复试验来解决错误和格式化。