Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

How to compare pointers?

c++ pointers

Correct way of declaring pointer variables in C/C++ [closed]

c++ c pointers coding-style

What is the point of function pointers?

c++ c function pointers c++-faq

Can a pointer to base point to an array of derived objects?

c++ pointers

Deleting a pointer in C++

What makes this usage of pointers unpredictable?

c++ pointers

Placement of the asterisk in pointer declarations

c++ c pointers declaration

Range references instead values

pointers reference go

What's the point of having pointers in Go?

pointers go

How to increment a pointer address and pointer's value?

c pointers

What is a "fat pointer"?

pointers rust

Reason to Pass a Pointer by Reference in C++?

c++ pointers reference

Can I call memcpy() and memmove() with "number of bytes" set to zero?

c++ c pointers memcpy memmove

How to declare std::unique_ptr and what is the use of it?

c++ pointers std unique-ptr

Why does this code segfault on 64-bit architecture but work fine on 32-bit?

Difference between std::reference_wrapper and simple pointer?

What can I use instead of the arrow operator, `->`?

c++ pointers

Why do linked lists use pointers instead of storing nodes inside of nodes

c++ pointers linked-list

Difference between *ptr += 1 and *ptr++ in C

c pointers post-increment

Why is address zero used for the null pointer?

c++ c memory pointers