2 Belge CSIT 341 [Object Oriented App. Dev.]

Lecture 1

CSIT341 LECTURE 1 INPUT/OUTPUT : OUTPUT : Uses ostream class cout is the object of the class ostream Output Operator is  << , the stream insertion  operator Can do both formatted and unformatted output   statement output   cout<<”Hello word”; Hello word     int a=3, b=4; cout<<”a= “<<a<<” b= “<<b; a=3         b=4   int…