Open In App

C++ Program to Print Your Own Name

Last Updated : 04 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Here, we will see how to input a name and print it as the output using a C++ program. Below are the examples:

Input: GeeksforGeeks
Output: GeeksforGeeks

Input: Alex
Output: Alex

Below is the C++ program to print the name as output:

C++




// C++ program to print name
// as output
#include <iostream>
using namespace std;
  
// Driver code
int main()
{
  string name;
      
  cout << "Enter the name: ";
  cin >> name;
    
  cout << "Entered name is: " << 
           name; 
    return 0;
}


Output:

C++ program to print name

 

  • Time Complexity: O(1)
  • Auxiliary Space: O(1)

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads