Hello,

I am very new to C++ programming. I am trying to read a file with very large strings back to back, no commas or any other seperations between characters in a string and the size of the string is not known as well. I need to count how many characters totoal in a unknown size of a string.

this is what I have so far:

[code=c]
#include <iostream>
#include <fstream>
...