Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

What does ** do in C language? [duplicate]

C++ Access derived class member from base class pointer

C++ - Assigning null to a std::string

c++ string pointers null

When convert a void pointer to a specific type pointer, which casting symbol is better, static_cast or reinterpret_cast? [duplicate]

Why does moving a pointer variable not set it to null?

Why do string literals (char*) in C++ have to be constants?

c++ c pointers string-literals

Golang basics struct and new() keyword

pointers struct go

C++ functions: ampersand vs asterisk

c++ function pointers

Dereferencing type-punned pointer will break strict-aliasing rules

How are iterators and pointers related?

c++ stl pointers iterator

Uses for multiple levels of pointer dereferences?

c++ pointers

Dereferencing a pointer in a 'for' loop initializer creates a segmentation fault

C: Why do unassigned pointers point to unpredictable memory and NOT point to NULL?

c pointers

Out parameters and pass by reference [closed]

Differences when using ** in C

c arrays pointers syntax

What is a void pointer and what is a null pointer?

What's the proper use of printf to display pointers padded with 0s

c pointers printf c99

Difference between const. pointer and reference?

c++ reference pointers

When to use a void pointer?

c++ c pointers

Should you use pointers (unsafe code) in C#?