我需要用C语言编写一条尾巴,其中输入流将是控制台中的参数。该函数应从输入数据中剪切n个字符。调用该程序的命令应为“ echo”示例文本“ | ../a.out 4”-即,将打印给定输入的最后4个字符。 不幸的是,我的功能无法向我打印任何内容。 提前致谢。如果还有其他更聪明的解决方案,那么我愿意提出建议。
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define BUFFSIZE 1024
#define MAXLINES 100
char* tailFunction (const char* argv[])
{
char* buf, data;
int n = 0, i =0;
buf = malloc(sizeof(char) * MAXLINES);
n = atoi(argv[0]+1);
while (data != EOF)
{
data = getc(stdin);
buf[i] = data;
i++;
}
int x = strlen(buf) - n;
for ( ; x < strlen(buf) ; x++)
{
printf("%c", buf[x]);
}
free(buf);
return 0;
}
int main(int argc, const char *argv[])
{
if (argc !=2)
{
return -1;
}
if (argv < MAXLINES)
{
tailFunction(argv);
return 0;
}
else return -1;
}