edited by
529 views
0 votes
0 votes

What is a variable pointer?

 

please note the question is not asking about pointer variables, but the specific term.

edited by

1 Answer

1 votes
1 votes
i think it is void pointer as it can store pointer of any  variable data types and u can assign or change at any time.

Related questions

0 votes
0 votes
0 answers
1
3 votes
3 votes
1 answer
4
Storm_907 asked Apr 16, 2023
463 views
Please explain this question void main() { int a =300; char *ptr = (char*) &a ; ptr++; *ptr=2; printf("%d" , a); }