0% found this document useful (0 votes)
4 views2 pages

Evaluate Expressions with I/O Functions

The document presents a practical exercise titled 'Write programs to evaluate any expression using Input/Output functions.' It includes a C++ program that prompts the user to input their age and name, then displays the entered information. The author of the document is Lokhande Gauri Dattatray, with Roll No 54.

Uploaded by

Yash Khobare
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views2 pages

Evaluate Expressions with I/O Functions

The document presents a practical exercise titled 'Write programs to evaluate any expression using Input/Output functions.' It includes a C++ program that prompts the user to input their age and name, then displays the entered information. The author of the document is Lokhande Gauri Dattatray, with Roll No 54.

Uploaded by

Yash Khobare
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd

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

You might also like