Answers for "std::ifstream get the size of the fyle in bytes"

0

std::ifstream get the size of the fyle in bytes

ifstream file( "example.txt", ios::binary | ios::ate);
return file.tellg();
Posted by: Guest on November-17-2020

Code answers related to "std::ifstream get the size of the fyle in bytes"

Browse Popular Code Answers by Language