Back To C++ Basic Index
// program to input three numbers and display their values #include
#include
void main() { int a; int b; int c; clrscr(); cout<<"enter value for a"; cin>>a; cout<<"enter value for b"; cin>>b; cout<<"enter value for c"; cin>>c; cout<<"displaying the values"; cout<<"value of a is "<