About 749,000 results
Open links in new tab
  1. Pointer (computer programming) - Wikipedia

    In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, …

  2. Pointer in programming - GeeksforGeeks

    Jul 23, 2025 · Pointer is a variable which stores the memory address of another variable as its value. The data stored in the memory address can be accessed or manipulated using pointers. …

  3. Pointers in C - Online Tutorials Library

    What is a Pointer in C? C pointer is the derived data type that is used to store the address of another variable and can also be used to access and manipulate the variable's data stored at …

  4. C Pointers (With Examples) - Programiz

    In this tutorial, you'll learn about pointers; what pointers are, how do you use them and the common mistakes you might face when working with them with the help of examples.

  5. C Programming Pointers Exercises: Beginner to Advanced Mastery

    Dec 4, 2025 · This guide provides 30 C programming exercises on pointers ranging from basic to advanced concepts. Pointers are the single most powerful, yet often challenging, concept in C …

  6. C Pointers - W3Schools

    Pointers are one of the things that make C stand out from other programming languages, like Python and Java. They are important in C, because they allow us to manipulate the data in the …

  7. Fundamentals of Pointers in C and C++ Explained

    Dec 2, 2025 · Pointers in C and C++ have a legendary reputation: powerful, tricky, and capable of crashing your program in the blink of an eye if you are careless. Yet, once you truly …

  8. Pointers in C: Your Complete Beginner's Guide - DEV Community

    Jul 6, 2025 · Learn C pointers from scratch! Complete guide with examples, memory diagrams, and practical code snippets for absolute beginners. Have you ever wondered how your …

  9. Pointer Basics - Stanford University

    One of the nice things about pointers is that the rules which govern how they work are pretty simple. The rules can be layered together to get complex results, but the individual rules …

  10. What Are Pointers and How They Work - codefinity.com

    Pointers can be challenging to understand at first, but they are straightforward on their own. The difficulty usually arises from their use cases, especially when multiple pointers are involved. A …