C++ program to display name and age
In this program, we will read name and age of the person and display them on the output screen. Here, we will learn how to read string (name) with spaces in C++ language?
Here, we are declaring a string (character array) variable named name that will store name of the person and integer variable named age that will store the age of the person.
Program to Read and Display Name and Age in C++
Output
#define MAX_LENGTH 100
This Macro is using to define maximum number of character to declare character array and to read maximum number of character through cin.getline().
cin.getline(name,MAX_LENGTH)
This is a library method of cin object (istream class), which is using to read maximum of MAX_LENGTH (100) characters from the keyboard with spaces.
need an explanation for this answer? contact us directly to get an explanation for this answer