answersLogoWhite

0

Why is it that pointer are not tht common?

Updated: 9/17/2019
User Avatar

Wiki User

8y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why is it that pointer are not tht common?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the 3 common variants of mouse?

Track pads , Trackballs and Pointer


The common name of the white shark?

White Pointer, White Death, Maneater, and Porker.


Why does my pointer on my laptop keep getting stuck and i can't find it?

The most common cause of the pointer on a laptop getting stuck and not being visible is malware. Another cause is overheating.


Difference between pointer to constant and constant pointer?

1. pointer to a constant means you can not change what the pointer points to 2. constant pointer means you can not change the pointer.


What is tht?

ThT is basically an abbreviation of that.


What is triple pointer?

Example: int x; -- integer int *px= &x; -- pointer to integer int **ppx= &px; -- pointer to pointer to integer int ***pppx= &ppx; -- pointer to pointer to pointer to integer


What are pointer to pointer?

A pointer only holds an address information (location) in the memory. if a pointer holds points another pointer then it is a pointer to an other pointer. Pointer holds an address in the memory so in that address there is an other location information that shows another location.


What is the toy that kids get hurt on the most?

bikes dh any body with common since would know tht


How many bits are used by pointer?

8*sizeof (void *) common values are: 16, 32, 64


What is pointer of pointer?

pointer is the variable that holds the address of another variable


Why is double pointer used?

Double pointer is a pointer to a pointer. So you can work with the double pointer as you work with a single one.Or you might mean 'pointer to double', eg:void clear_double (double *dp){*dp = 0;}


Define pointer to pointer in c?

Double (**) is used to denote the double pointer. As we know the pointer stores the address of variable, Double pointer stores the address of any pointer variable. Declaration : int **ptr2Ptr;