Q:

C++ program to display name and age

-1

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 screenHere, 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.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to Read and Display Name and Age in C++

#include <iostream>
using namespace std;

#define MAX_LENGTH 100

int main()
{
	char name[MAX_LENGTH]={0};
	int age;
	
	cout<<"Enter name of the person: ";
	cin.getline(name,MAX_LENGTH);
	cout<<"Enter age: ";
	cin>>age;
	
	cout<<"Name: "<<name<<endl;
	cout<<"Age: "<<age<<endl;
	
	return 0;
}

Output

Enter name of the person: Vanka Manikanth 
Enter age: 25 
Name: Vanka Manikanth
Age: 25

#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

total answers (1)

Most popular and Searched C++ solved programs with Explanation and Output

Similar questions


need a help?


find thousands of online teachers now
C++ program to find factorial of a number... >>
<< C++ program to read a string...