CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Pointers

C Programming – Function Pointers in C

Pointers play a major role in C Programming. Writing code with pointers is more error-prone than code without pointers. Understanding pointers is a bit difficult. The simple thing about a pointer is, a pointer is a variable that holds an address like variables holds a value. That means pointers will not store any values rather […]

C Programming – Pointer to Pointer

As we discussed in, Understanding of Pointers in C, pointers are address holders. Pointers point to an address of a variable, or a function or even it can point to another pointer. Through this article, we are going to discuss Pointer to Pointer concepts in C. A pointer to pointer points to an address of […]

Scroll to top