Hi there !
I have one question about these functions:
- istream& get ( char* s, streamsize n, char delim );
- istream& getline (char* s, streamsize n, char delim );
I modified delim parameter to 's'. Why if I exceed the maximum number of characters to store and then I press "Enter" - it will end of loading? I chosen functions with the delim parameter and I modified it! (If I don't exceed the max number of characters, it will be OK - it'll come to a new line)...