About 405,000 results
Open links in new tab
  1. Pointers in C - GeeksforGeeks

    Sep 18, 2025 · Pointers are used to form complex data structures such as linked lists, graphs, trees, etc. Pointers reduce the length of the program and its execution time as well.

  2. C Pointers - W3Schools

    A pointer is a variable that stores the memory address of another variable as its value. A pointer variable points to a data type (like int) of the same type, and is created with the * operator. The …

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

  4. Pointers in C - Online Tutorials Library

    Pointers are used to pass parameters by reference. This is useful if a programmer wants a function's modifications to a parameter to be visible to the function's caller. This is also useful …

  5. Pointers - cppreference.com

    Dec 19, 2013 · In general, pointer is a type of a variable that stores a link to another object. In C and C++, the link is the address of that object in the program memory. Pointers allow to refer …

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

  7. 12.7 — Introduction to pointers – Learn C++ - LearnCpp.com

    Feb 7, 2025 · Pointers are variables that hold a memory address. They can be dereferenced using the dereference operator (*) to retrieve the value at the address they are holding.

  8. Pointers (C++) | Microsoft Learn

    Aug 2, 2021 · Pointers are used extensively in both C and C++ for three main purposes: to iterate over elements in arrays or other data structures. In C-style programming, raw pointers are …

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

  10. Pointers in C Explained – They‘re Not as Difficult as You Think

    Dec 20, 2024 · The basic rule is that pointers are intended to be used to access objects, not to replace them." This captures the pointer mindset perfectly – they provide indirect access to …