Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

#include <iostream>

using namespace std;

int main()

//declaring variables

char fname(30),lname(30),address(30),gender(5);

int age;

//reading a from a keyeboard

cout<<"enter first name;"<<endl;

cin>>fname;

cout<<"enter last name;"<<endl;

cin>>lname;

cout<<"enter address;"<<endl;

cin>>address;

cout<<"enter lgender;"<<endl;

cin>>gender;

cout<<"enter age;"<<endl;

cin>>age;

//displayiing out put on console

cout<<"my full informtion is listed below"<<endl;

cout<<"fist name;"<<fname<<endl;

cout<<"last name;"<<lname<<endl;

cout<<"address;"<<address<<endl;
cout<<"x;"<<gender<<endl;

cout<<"age;"<<age<<endl;

return 0;

You might also like