Answers for "add for input output file in c/c++"

C++
0

add for input output file in c/c++

#ifndef ONLINE_JUDGE
freopen(fi, "r", stdin);
freopen(fo, "w", stdout);
#else
// online submission
#endif
Posted by: Guest on October-29-2021

Browse Popular Code Answers by Language