本文介绍了C ++中的tail -f实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


采访中有人问我这个问题.如何在C或C ++中实现等效于Unix命令tail -f的功能.有人可以指教吗.

我认为我们应该使用ftell,fseek,但不是很确定.

谢谢,
Ganesh

Hi,
I was asked this question in an interview. How to implement the equivalent of Unix command tail -f in C or C++. Can someone please advise.

I think we should use ftell, fseek, but not quite sure though.

Thanks,
Ganesh

推荐答案




这篇关于C ++中的tail -f实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 15:01