This pointer can have a lot of reasons so maybe you should ask your parents
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;}
yea that's why its called the point FINGER
You can declare pointer-variables, if that's what you mean. Example: char *sample = "Sample";
This error appears due to incorrect assignment to pointer and pointer tries to access illegal memory...
On far pointers the comparison operators(== and !=) check the 32 bit value. While >, =,
What do you mean by 'determine'? Explain, please.
The function of a pointer tells you if you have the correct measurement or not. hope that helped!!:)xoxox <3 -Demi
When you touch your pointer fingers together, it can symbolize connection, agreement, or unity between two people.
Multiplication is yet another thing, what you should never do with pointers.
Millimeter and it shows the wavelength of the laser.
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.
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