the execution time of programe is fast using the pointer
insert or delete values both side.so use double pointer
It is accessing data by address.
An infrared pointer uses light that is mainly in the infrared spectrum, and so is mostly invisible to humans. A laser pointer in general refers to any device using a beam of light to mark an object. Both use the same basic technology. The only difference is the wave length. IR lasers are outside of the visual spectrum where as standard laser pointers are within the visual spectrum.
To change the shape of the pointer in a user interface, you can typically modify the cursor property in CSS for web-based interfaces or adjust the cursor settings in the operating system for desktop applications. You can choose from a variety of built-in cursor shapes or create your custom cursor design.
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
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.
pointer is the variable that holds the address of another variable
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;}
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;
Void pointer can hold the address of any kind of pointer. But we can't operate on void pointer
Pointer to Pointer is a double pointer, denoted by (**). Pointer stores the address of the variable and pointer to pointer stores the address of a pointer variable and syntax can be given as int **ptr2ptr;