문제

Usually lseek doesn't work on stdin.

But, what if I run my program like this:

./a.out < filename

Now stdin is a file and not keyboard.

Will lseek work there?

Can I do

lseek(0, -1, SEEK_CUR)

and get the same effect like

ungetc() ?

도움이 되었습니까?

해결책

Yes, lseek will change the seek pointer. No, it is not equivalent to ungetc().

fseek(stdin, -1, SEEK_CUR) comes closer to ungetc(), but still isn't identical.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top