Practical No.
Title:Write programs to evalute any expression using
Input/Output functions
Name:Lokhande Gauri Dattatray
Roll No:54
Input
#include<iostream.h>
#include<conio.h>
int main()
{
int age;
char name[10];
cout<<"Enter the age and name";
cin>>age>>name;
cout<<"The age and name is"<<age<<name;
return 0;
}
Output