Printing string getline in C++


This program is written in C++ and prompts the user to enter their full name. The program reads the input as a string using the getline() function and then prints the entered name to the console using the cout statement. The program begins by including the necessary header files. The iostream header file is required for input/output operations, while the string.h header file is used for manipulating strings.

Next, the program defines a string variable Name. The program then prompts the user to enter their full name using the cout statement and the getline() function reads the input from the console and stores it in the Name variable. Finally, the program prints the entered full name to the console using the cout statement.

Source Code

#include<iostream>
#include<string.h>
using namespace std;
int main()
{
    string Name;
    cout<<"\nEnter your full name: ";
    getline(cin,Name);
    cout<<"\nYour Full name is "<<Name;
    return 0;
}
To download raw file Click Here

Output

Enter your full name: Tutor Joe's
Your Full name is Tutor Joe's

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples