Cout<<”Print
sentence”; This statement is use to print out any kinds of sentence or string
type values.
Cout<<345; This statement is use to print out any kinds of numeric numbers,
without change.
Cout<<variable; This statement is use to print the value of variable. The value of
the which variable we want to print, It is need to write that variable on
variable place.
cin>> a; cin is the standard input for c++ programming. any kinds of value can receive by using this statement. The benefit c++ from other language as like as java is this point.
char ca;
int in;
string ss;
float fl;
double db;
cin>>ca;
cin>>in;
cin>>ss;
cin>>fl;
cin>>db;
Click hare download source code.