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.
stray pointer is a that pointer which pin points nothing or anywhere but we dont know... for example: int *ptr; ptr=new int[10]; //this memory is on heap. and at the end of the programm if we dont delete this memory mean to say if we dont deallocate this memory then this type of pointer is pointing towards nothing or anywhere because when we work on heap deletion of pointer is must if we dont delete pointers than they pin point stray or anywhere so that sort of pointer is stray pointer. i think you understand...