Why is that a pointer is depicted by '*' in C?

Questions by arvind_begginer

Showing Answers 1 - 1 of 1 Answers

pointer is depicted by '*' . this is  to  differentiate a pointervariable from normal variable. it will tell the compiler that it is not a normal variable, but it is a pointer variable which is holding the address of another variable.  so use of '*' is only to differentiate a pointer variable from normal variable. i hope it is clear for you know.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.