Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

C++ - Does the Destructor just deallocate the memory or does it actually delete the object?

Performance: Pointer dereferencing in C++

c++ performance pointers

arithmetic of pointers in c++ due to allocation

c++ pointers math

C structure that ends with an asterisk

c pointers struct

Is pointer to struct a pointer to its first member?

c pointers struct alignment

Why do I an get error when trying to print a null pointer

c pointers

Returning float in void* function

c function pointers return

Is modifying an object through a pointer to const undefined behavior?

If two pointers point to the same memory address, do you only need to use free(ptr) once or twice?

Cut out section of string

c string pointers

Initializing an array of pointers to pointers

c arrays pointers

Array of pointers to multidimensional arrays

c arrays pointers

Getting an address using both square brackets and ampersand

c pointers standards

Casting a pointer to a sub-class (C++)

c++ pointers

Pointer allocation vs normal declaration

c++ pointers allocation

Pointer arithmetic and arrays: what's really legal?

How to return a copy of the data in C++

c++ pointers

How to tell where I am in an array with pointer arithmetic?

c pointers

Arrays of pointers to arrays?

c++ arrays pointers

Why does a pointer's allocated memory persist after a function, but not an array?

c++ arrays memory pointers scope