0
What is the relation between ' * ' and ' & ' operator
When to use them
1 Respuesta
+ 1
the '*' operator is define when you declare a pointer and it returns the value of the variable that you pass it's memory address to the pointer with the '&' operator.
example:
int x=5;
int *p= &x;