Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

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

Why aren't pointers initialized with NULL by default?

Pointers, smart pointers or shared pointers? [duplicate]

c++ pointers

Should I use char** argv or char* argv[]?

c arrays pointers standards

error: ‘NULL’ was not declared in this scope

c++ gcc pointers null

Create a pointer to two-dimensional array

c arrays pointers

What does Visual Studio do with a deleted pointer and why?

Why does the use of 'new' cause memory leaks?

Why are function pointers and data pointers incompatible in C/C++?