C++ program to display name and age

Input name and age of a person, we have to print on the console using C++ program.
[Last updated : February 28, 2023]

Reading and displaying name and age in C++

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++

#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.



Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.