I am born with potential,
I am born with goodness,
I am born with ideas and dreams,
I am born with greatness,
I have wings,
I have two wings,
I am meant for creativity because I have wings,
I will fly, I will fly, I will fly !!! -- DR. A. P. J. Abdul Kalam
Search This Blog
Friday, December 30, 2011
Use of Getline() in C++
Example
1 2 3 4 5 6 7 8 9 10 11
// getline with strings
#include
#include usingnamespace std;
int main () {
string str;
cout << "Please enter full name: ";
getline (cin,str);
cout << "Thank you, " << str << ".\n";
}
No comments:
Post a Comment
Thank you