#include using namespace std; int main() { // std::cout//scope operator for standard namespace like system in clr cout << "hi there"; // "<<" is the insertion operator cin.get(); //pointers int *p; //pointer to an integer int x= 100; p= &x; // address of x assigned to p &=addressOf operator }