We are improving our search experience. To check which content you have full access to, or for advanced search, go back to the old search.

Search

Please fill in this field.
Filters applied:

Search Results

Showing 1-20 of 10,000 results
  1. Pointers

    You had a glimpse of pointers in the last chapter and just a small hint at what you can use them for. Here, you’ll delve a lot deeper into the...
    German Gonzalez-Morris, Ivor Horton in Beginning C
    Chapter 2024
  2. Function Pointers

    Functions are not variables, but we can still have pointers to functions or function pointers. For example, if we have a simple function:...
    Slobodan Dmitrović in Modern C for Absolute Beginners
    Chapter 2024
  3. Pointers

    Data is stored in computer memory. The CPU reads from and writes to this memory. In simple terms, computer memory is an array of cells called bits....
    Slobodan Dmitrović in Modern C for Absolute Beginners
    Chapter 2024
  4. Pointers

    This chapter introduces pointers. We rewrite our arithmetic program from Chapter 1 using pointers, use the GDB debugger to execute instructions...
    Chapter 2023
  5. Pointers

    This chapter introduces pointers. We rewrite our arithmetic program from Chapter 1 using pointers, use the GDB debugger to execute instructions...
    Chapter 2023
  6. Pointers

    Objects reside in memory. And so far, we have learned how to access and manipulate objects through variables. Another way to access an object in...
    Slobodan Dmitrović in Modern C++ for Absolute Beginners
    Chapter 2023
  7. Smart Pointers

    Smart pointers are pointers that own the object they point to and automatically destroy the object they point to and deallocate the memory once the...
    Slobodan Dmitrović in Modern C++ for Absolute Beginners
    Chapter 2023
  8. Where to Use Pointers?

    In this chapter, we discuss several pointers use cases, including the use of pointers as function parameters.
    Slobodan Dmitrović in Modern C for Absolute Beginners
    Chapter 2024
  9. Pointers and References

    The concepts of pointers and references have similarities, which is why we have put them together in a single chapter. Pointers are important because...
    Ivor Horton, Peter Van Weert in Beginning C++23
    Chapter 2023
  10. Pointers to Memory

    This chapter looks at pointers in greater detail, considering different byte memory granularity. We also discuss issues related to abnormal defects,...
    Chapter 2023
  11. Pointers to Memory

    This chapter looks at pointers in greater detail, considering different byte memory granularity. We also discuss issues related to abnormal defects,...
    Chapter 2023
  12. Reconstructing a Program with Pointers

    In this chapter, we use our assembly language knowledge to reconstruct C and C++ code that uses pointers. We also compare the disassembly of the...
    Chapter 2023
  13. Reconstructing a Program with Pointers

    In this chapter, we use our assembly language knowledge to reconstruct C and C++ code that uses pointers. We also compare the disassembly of the...
    Chapter 2023
  14. Basic Types, Values, and Pointers

    In this chapter, I begin to describe the Go language, focusing on the basic data types before moving on to how they are used to create constants and...
    Adam Freeman in Pro Go
    Chapter 2022
  15. Function Pointers

    We now leave data structures for a spell to talk about something new: pointers to functions. Like pointers to data, pointers to functions give us a...
    Thomas Mailund in Pointers in C Programming
    Chapter 2021
  16. Pointers

    You can store the address of an object in another object, and this is where we get to pointers. A pointer is a variable that stores memory addresses...
    Thomas Mailund in Pointers in C Programming
    Chapter 2021
  17. Pointers

    Data is stored in computer memory. The CPU reads from and writes to this memory. Computer memory, in simple terms, is an array of cells, where each...
    Slobodan Dmitrović in Modern C for Absolute Beginners
    Chapter 2021
  18. Function Pointers

    Functions are not variables, but we can still have pointers to functions or function pointers. For example, if we have a simple function:...
    Slobodan Dmitrović in Modern C for Absolute Beginners
    Chapter 2021
  19. A Fine-Grained Semantics for Arrays and Pointers Under Weak Memory Models

    Developers of concurrent code for multicore architectures must navigate weak memory models (wmms) – either directly at the hardware/assembly level or...
    Robert J. Colvin in Formal Methods
    Conference paper 2023
  20. Aggregates and Pointers

    This chapter focuses on arrays and structures, which are C’s primary aggregate types. Arrays aggregate variables of the same type, whereas structures...
    Martin Kalin in Modern C Up and Running
    Chapter 2022
Did you find what you were looking for? Share feedback.