//P-5 : cascading of extraction operator or get from operator
#include <iostream.h>
#include <conio.h>
void main()
{
int a, b, c;
clrscr();
cout << "Enter value of A, B, C, : ";
cin >> a >> b >> c;
cout << "A = " << a << endl;
cout << "B = " << b << endl;
cout << "C = " << c << endl;
getch();
}
Comments
Post a Comment