C++ Program to Print the Name of the User using Streams

This C++ Program which prints the name of the user using streams. The program asks user to input his/her name using Input Streams, the name is saved in a string variable and is printed using Output Stream.

Here is source code of the C++ program which prints the name of the user using streams. The C++ program is successfully compiled and run on a Linux system. The program output is also shown below.

  1. /*
  2.  * C++ Program to Print the Name of the User using Output Stream
  3.  */
  4. #include <iostream>
  5. #include <string>
  6.  
  7. int main()
  8. {
  9.     std::string firstname;
  10.  
  11.     std::cout << "Hello User, Enter your first name.\n ";
  12.     std::cin >> firstname;
  13.     std::cout << "Hello " << firstname
  14.               <<". It was nice to know your name!\n";
  15. }

$ g++ main.cpp
$ ./a.out
Hello User, Enter your first name.
George
Hello George. It was nice to know your name!

Sanfoundry Global Education & Learning Series – 1000 C++ Programs.

advertisement
If you wish to look at all C++ Programming examples, go to C++ Programs.

advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
I’m Manish - Founder and CTO at Sanfoundry. I’ve been working in tech for over 25 years, with deep focus on Linux kernel, SAN technologies, Advanced C, Full Stack and Scalable website designs.

You can connect with me on LinkedIn, watch my Youtube Masterclasses, or join my Telegram tech discussions.

If you’re in your 20s–40s and exploring new directions in your career, I also offer mentoring. Learn more here.