About 557,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

    Pointers (pointer variables) are special variables that are used to store addresses rather than values. Here is how we can declare pointers. Here, we have declared a pointer p of int type. …

  5. 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 …

  6. 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 …

  7. 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 …

  8. In object- oriented programming, pointers to functions are used for binding methods, often using virtual method tables. A pointer is a simple, more concrete implementation of the more …

  9. 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 …

  10. Pointers - Learn C - Free Interactive C Tutorial

    Our program can use pointers in such a way that the pointers point to a large amount of memory - depending on how much we decide to read from that point on.