#include int main() { int first_number=100; int sec_number=101; int third_number=103; int *pointer;//THIS DEFINES A POINTER TO AN INTEGER pointer = &first_number;//OUR POINTER POINTS TO FIRST_NUMBER cout<<"The value of the first number is "<