Pointer to Pointer | Data Structure Using C

TL;DR
This video explains the concept of a pointer to a pointer in C programming.
Transcript
hello dear students i am samir velankar i welcome all of you to this next video on pointers in c and the topic is pointer to a pointer actually this topic should be very easy for all the students because we have come a long long way we have seen so many things about pointers in c so pointer to a pointer is nothing extraordinary but let's see you kn... Read More
Key Insights
- 👻 A pointer to a pointer can store the address of another pointer, allowing indirect access to the data.
- 😥 Asterisk t is used to access the value of the pointer to which t points.
- 😥 Double dereferencing asterisk asterisk t gives the value of the variable pointed by the pointer to which t points.
- ❓ The value of a pointer to a pointer is the address of another pointer.
- ❓ A pointer to a pointer can be useful for complex data structures and dynamic memory allocation.
- 😀 Understanding pointers to pointers is essential for advanced C programming.
- ❓ The address of a pointer is obtained using the ampersand operator.
Install to Summarize YouTube Videos and Get Transcripts
Explore YouTube Video Summarizer or Get YouTube Transcript Extractor
Questions & Answers
Q: What is a pointer to a pointer?
A pointer to a pointer is a variable that stores the address of another pointer. It allows indirect access to the data pointed by the pointer it points to.
Q: How is a pointer to a pointer declared?
A pointer to a pointer is declared using a double asterisk before the variable name. For example, "int **t" declares t as a pointer to a pointer to an integer.
Q: What does asterisk t mean?
Asterisk t is used to access the value of the pointer to which t points. In the case of a pointer to a pointer, asterisk t will give the value of the pointer it points to.
Q: How can a pointer to a pointer be useful?
A pointer to a pointer is useful in cases where we need indirect access to pointers. It allows us to modify the value of a pointer indirectly, or allocate memory dynamically.
Summary & Key Takeaways
-
The video explains the concept of a pointer to a pointer in C programming.
-
A pointer to a pointer is declared using a double asterisk before the variable name.
-
The value of a pointer to a pointer is the address of another pointer.
Read in Other Languages (beta)
Share This Summary 📚
Summarize YouTube Videos and Get Video Transcripts with 1-Click
Try YouTube Summary with ChatGPT & Claude or YouTube Transcript Generator
Explore More Summaries from Ekeeda 📚






Summarize YouTube Videos and Get Video Transcripts with 1-Click
Try YouTube Summary with ChatGPT & Claude or YouTube Transcript Generator