As far as I know about Data type, while declaring a variable, we need to declare its data type, which tells the compiler to reserve the number of bytes in the memory accordingly.
But in case of pointers, we know that their size is always of 2 bytes (in Turbo Compiler) always irrespective of the data type of the variable it is pointing.
My question is, if the pointers always take 2 bytes, then what is the need of mentioning the data type while declaring them? OR My understanding about pointers is wrong?