About 1,380,000 results
Open links in new tab
  1. How to printf a memory address in C - Stack Overflow

    May 20, 2015 · But not function pointers: . @Blue Moon This does leave the issue of how to print a function pointer (OP's potential memory address). Cast to uintmax_t and hope for the best? …

  2. C Program to Print the Address of a Variable Using Pointers

    Sep 2, 2024 · This C program demonstrates how to use pointers to store and print the address of a variable. It covers basic concepts such as pointer declaration, the address-of operator, and …

  3. Read a memory address using scanf () and print its value in C

    Mar 10, 2024 · Here, we are going to learn how to read a memory address using scanf () and print value stored at the given memory address in C programming language?

  4. C Program to Read a Memory Address Using scanf () and Print ...

    Learn how to use scanf () in C to input a memory address and print the value stored at that location. Includes beginner-friendly example and explanation.

  5. How to get value from address in Python ? - GeeksforGeeks

    Jul 23, 2025 · In this article, we will discuss how to get the value from the address in Python. First, we have to calculate the memory address of the variable or python object which can be done …

  6. Memory Address in C - Online Tutorials Library

    The compiler assigns the value in a random byte address. Since an int type needs 4 bytes, the next four addresses are earmarked for it. C allows you to find out which address has been …

  7. C Memory Address - W3Schools

    Note: The memory address is in hexadecimal form (0x..). You will probably not get the same result in your program, as this depends on where the variable is stored on your computer. You …

  8. How to Print the Address of a Variable in C – A Linux Expert ...

    Nov 7, 2023 · Introduction The address of a variable in C refers to its unique location in computer memory. The address is an integer value that allows us to access the precise memory space …