Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

typedef void (*MyCallback) : What is it and how to use it? [duplicate]

c++ pointers typedef void

Confusion about return type of a function when it is a pointer

c++ pointers return-value

Passing by reference or use global variable in C

array addressing [duplicate]

c pointers arrays

Allocating memory to 3D array

c pointers

Ada array access: Pointer to a specific item within the array, the position being dynamic based on input parameters.

pointers ada

If pointers are all the same size, how come we have to declare the type of object they point to?

c++ pointers

Cast a pointer to struct to a pointer to the only member of that struct

When we call (char*)malloc(sizeof(char)) to allocate memory for a string, is it initialized? How to initialize?

c pointers initialization

Changing elements of a constant char* literal in VS

c++ pointers char constants

Polymorphism in C++ does not work correctly with reference

Why I encounter a NULL terminating character at start of a string when I go backwards through it?

How do arrays work inside a struct?

c arrays pointers struct

when explicit pointer type cast is needed?

c++ c pointers casting

cannot assign to `*x` because it is borrowed

Accessing elements of typedef'ed array of pointers

c++ c arrays pointers

How efficient smart pointers are?

c++ pointers c++11 std

Assign an array to a pointer with complex cases

c arrays pointers

Passing an array of a structure between functions

c arrays pointers structure