answersLogoWhite

0


Best Answer

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;

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

A pointer which keeps address of a function is known as function pointer. example: { void *(*ptr)(); ptr= &display; (*ptr)(); return(0); } void display() { .................. )

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: C program pointers to pointers examples?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to write a C program to find largest 2 numbers using pointers?

program to find maximum of two numbers using pointers


Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


How do you run graphics program in C?

pro c language to implement linear search using pointers


Function prototype in c?

Yes. Examples can be found in stdio.h


Write a c program to copy two strings using pointers?

nahi malum


How do you write c program to perform sum of elements of matrix using pointers with functions?

i cant write


What operation can be performed on pointers?

Examples: * [] -> = ==,<=,<,!=,>=,> +,+=,-,-=


What is the difference between c plus plus and java programming?

Java doesn't have pointers. C++ has pointers.


Why pointer is callded jewel of c language?

a pointer is a derived data type in c. pointers are undoubtedly one of the most distinct and exciting features of c language.it has added power and flexibility to the language. *pointers are more efficient in handling arrays and tables. *pointer can be used to support dynamic memory management. *pointers reduce length and complexity of programs. *increase the execution speed and thus reduce the program execution time. by following character's real power of c lies in proper use of pointers. pointer is called the jewel of c-language.


How do you write a C program to copy to strings using pointers?

mystrcpy (char* dest, char* src) { while ((*dest++ = *src++) != '\0); }


How pointers reduce the length of a program?

They don't.


What is stream pointer in c?

C does not have stream pointers.