char st[256];
ifstream fe(route.c_str());
fe >> st;
while (st[1] == '/') fe >> st; // Im trying to skip all the "//" parts
When i do fe >> c-string-object , what am i exactly storing? A char vector that contains all the elements of fe, from the file manager's pointer up to '\n' or its EOF? Am i writing strange symbols at the beginning of st when i do fe >> st? (such as the length of the data im reading, etc, etc..)
More importantly... is there any tutorial you'd recommend me?