Skip to content

Latest commit

 

History

History

Program-05

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Problem 05

Description

'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, that of memory-mapped computer hardware. A pointer references a location in memory, and obtaining the value stored at that location is known as dereferencing the pointer. As an analogy, a page number in a book's index could be considered a pointer to the corresponding page; dereferencing such a pointer would be done by flipping to the page with the given page number and reading the text found on that page. The actual format and content of a pointer variable is dependent on the underlying computer architecture.'¹.

Includes solution for The BEST Coding Interview Question Ever by Clément Mihailescu

References

1 - Pointer (computer programming)

2 - A Tutorial On Pointers and Arrays In C by Ted Jensen