Computer Science, asked by sejaltembhare4538, 11 months ago

Difference between pointer variable and normal variable in c++ with comparison table.


Anonymous: ___k off

Answers

Answered by DannySan
0

Answer:

A variable holds the value for the specified data type.But a pointer variable holds the address( or Memory Location ) of another variable or pointer variable.

Example:

char *cha;

Here cha is a pointer variable and it is going to store the address of a char value.

Similar questions