stdinをフラッシュする方法??
次のコードスニペットで機能しないのはなぜですか?
#include <string.h>
#include <stdio.h>
#include <malloc.h>
#include <fcntl.h>
int main()
{
int i=0,j=0, sat;
char arg[256];
char * argq;
argq = malloc(sizeof(char)*10);
printf("Input the line\n");
i=read(0, arg, sizeof(char)*9);
arg[i-1]='\0';
fflush(stdin);
i=read(0, argq, sizeof(char)*5);
argq[i-1]='\0';
puts(arg);
puts(argq);
return 0;
}
ここで、入力を11文字として指定した場合、9文字のみを読み取る必要がありますが、stdinの残りの2文字はフラッシュされず、argqで再度読み取られます。なんで?
入力:123 456 789
出力:123 456 89
なぜこの89を出力として取得するのですか?