#include<iostream>
using namespace std;
int main()
/*{
    char name[50];
    int age;
    cout<<"enter the name and the age as well:"<<endl;
    cin>>name>>age;
    cout<<"the users name is "<<name<<" and the entered age is:"<<age<<endl;
    return 0;
}*/
{
    char name[50];
    int age;
    cout<<"Enter the Name: "<<endl;
    cin>>name;
    cout<<"enter the age :"<<endl;
    cin>>age;
    cout<<"the name is: "<<name<<"\nAnd the age is: "<<age<<endl;
    return 0;
    
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: