Object Oriented Programming in C++

📖 Definition:

I/O operations allow communication between user and program.

🔧 Operators:

  • cin → Input
  • cout → Output
 
int age;
cin >> age;
cout << “Age: “ << age;
 

🧪 Exercise:

  • Take input of two numbers and print their sum