Example of Pointer Declaration
int *ptrInt; or int* ptrInt; or int * ptrInt;
// ptrInt can point to an integer variable
double *ptrDouble; or double* ptrDouble;
// ptrDouble can point to a double variable
char *ptrChar; or char* ptrChar;
// ptrChar can point to a character variable
string *ptrString; or string* ptrString;
// ptrString can point to a string variable