answersLogoWhite

0


Best Answer

insert or delete values both side.so use double pointer

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the applications of double pointer in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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;


What is double pointer in c?

example: double num = 12.34; double *numptr = # double **numptrptr = &numptr;


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;}


Does having a void double pointer make sense in C?

No, 'void *' and 'double *' are ok; 'void double *' is syntax error.On the other hand 'void **p' is totally correct: p holds the address of a generic pointer.


What are the important applications of pointer?

the execution time of programe is fast using the pointer


C program pointers to pointers examples?

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;


What do you do to automatically resize column headings to match the width of the largest data filled in a column?

Put the mouse pointer between the column header of the column the text is in and the one to the right, until it becomes a double-headed arrow. Then double-click. So if the text was in column C, you'd put the mouse pointer on the border between the C and D for each column and when you saw the pointer change to having two arrows, then double click.


What is double in 'c' language?

The double data type is a fundamental numeric data type that can represent floating point values. Depending on implementation, it is normally 8 bytes in size, with a precision around 18 decimal digits.


What is pointer to a member in objective c?

It is a pointer that points to a member of a structure.


How can you offset a pointer in C?

Increment or decrement the pointer by the required offset.


Pointer arithemetic in C?

no


Use of double pointer?

A double pointer has two basic meanings. One is ofa pointer to a pointer, where changing the value ofdouble pointer will result in the original pointer being changed. Another is that of a two-dimentional array, such as a matrix, or a list of char* (e.g. in main when you use argv).