About 579,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 that stores the memory address of another variable. Pointers are a powerful feature of many programming languages, including C, C++, and others. They …

  3. Pointer Basics - Stanford University

    This document introduces the basics of pointers as they work in several computer languages -- C, C++, Java, and Pascal. This document is the companion document for the Pointer Fun with …

  4. Understanding Pointers in Programming: A Beginner-Friendly ...

    Feb 11, 2025 · In this article, we’ll break down pointers in a simple and intuitive way. By the end, you’ll have a solid grasp of what pointers are, why they are useful, and how you can use them …

  5. Pointers in Computer Programming: A Comprehensive Guide ...

    A pointer is an object that stores a memory address, allowing programmers to access and modify data stored in computer memory. Understanding pointers is essential for mastering languages …

  6. Understanding Pointers in Programming - DEV Community

    Aug 21, 2023 · When you're declaring a pointer, you use the * operator before the identifier. This signifies that the variable you're creating is not a typical variable, but a pointer that will store a …

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

    Pointers, found in languages like C and C++, allow direct access and manipulation of memory addresses, making programs both efficient and powerful—but also more complex. In this …