Write a C++ program to get the name, age and salary of a person and display the same

#include < iostream >
using namespace std;
int main()
{
char name[10];
int age;
float salary;
cout<<"Enter name of the person:\n ";
cin>>name;
cout<<"Enter age: \n";
cin>>age;
cout<< “Enter salary\n”;
cin>>salary;
cout<<"Name: "<<name<<endl;
cout<<"Age: "<<age<<endl;
cout<<”Salary:”<< salary<<endl;
return 0;
}