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.
#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
Enter your full name: Tutor Joe's Your Full name is Tutor Joe's
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions