Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
C Language
1.8K+ articles
Linked List
1.2K+ articles
Data Structures
1.1K+ articles
C/C++ Puzzles
187+ articles
cpp-pointer
94+ articles
C-Pointers
64+ articles
pointer
20+ articles
C-Pointer Basics
10+ articles
cpp-double-pointer
127+ posts
Recent Articles
Popular Articles
Delete multiple occurrences of key in Linked list using double pointer
Last Updated: 10 January 2024
Given a singly linked list, delete all occurrences of a given key in it. For example, consider the following list.Input: 2 - 2 - 4 - 3 - 2 Key to delete = 2Output: ...
read more
Linked List
C/C++ Puzzles
Data Structures
DSA
cpp-pointer
cpp-double-pointer
What is a Pointer to a Null pointer
Last Updated: 16 June 2022
NULL pointer in C At the very high level, we can think of NULL as a null pointer which is used in C for various purposes. Some of the most common use cases for NULL areTo ...
read more
C Language
pointer
cpp-pointer
C-Pointers
Pointers
C-Advanced Pointer
Advanced Pointer
C-Pointer Basics
cpp-double-pointer
How many levels of pointers can we have in C/C++
Last Updated: 18 January 2022
Prerequisite: Pointer in C and C++, Double Pointer (Pointer to Pointer) in CA pointer is used to point to a memory location of a variable. A pointer stores the address of ...
read more
C Language
C++
Picked
pointer
cpp-pointer
C-Pointers
Pointers
C-Advanced Pointer
C-Pointer Basics
cpp-double-pointer
How to write C functions that modify head pointer of a Linked List?
Last Updated: 10 January 2023
Consider simple representation (without any dummy node) of Linked List. Functions that operate on such Linked lists can be divided into two categories:1) Functions that do...
read more
Linked List
DSA
cpp-pointer
cpp-double-pointer
Difference Between *& and **& in C++
Last Updated: 28 May 2024
In C++, the*(pointer to reference) and**(pointer to pointer reference)symbols are used in the context of pointers and references for manipulating memory addresses and deal...
read more
C++ Programs
C++
Picked
cpp-references
cpp-pointer
C++-References
cpp-double-pointer
CPP Examples
misc-cpp
1
2
3
4
5
6
7
8
9
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !