User profile: Hanaka

This account has limited functionality.
This was likely due to the user being reported by not following some specific rules for a service in this website.
If you believe this to be an error, please use our Contact form
User info
User name:Hanaka
History
Joined:
Number of posts:6
Latest posts:

Reading from file
http://www.cplusplus.com/reference/istream/istream/ignore/ http://www.cplusplus.com/reference/string...

Reading from file
Choose a longer one. [code] while(data >> id && (data.ignore(20, '\n'), getline(data, name)) && data...

Reading from file
Simplest way you can imagine : [code][b]string fullName[/b]; while (data >> id >> name1 >> name2 >>...

Multiple void functions with a string
Well, for example : [code]#include <iostream> #include <string> using namespace std; void drawBea...

Multiple void functions with a string
Start with this : [code]#include <iostream> #include <string> using namespace std; int main() { ...