I was told that to redirect from standard input to a file I need to do the following:
static std::ifstream inF("inpur.txt"); std::cin.rdbuf(inF.rdbuf());
and every call to std :: cin will be redirected to input.txt. but my question is: do I need to open inF? and if so, where do I need it?
source share