Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

How does delete[] know it's an array?

How do I do a literal *int64 in Go?

pointers go struct literals

Declaring pointers; asterisk on the left or right of the space between the type and name? [duplicate]

c++ c pointers

Why is x[0] != x[0][0] != x[0][0][0]?

c++ arrays pointers

constant pointer vs pointer on a constant value [duplicate]

c pointers constants

What's the point of const pointers?

c++ c pointers constants

"<type> is pointer to interface, not interface" confusion

pointers go interface

C: differences between char pointer and array [duplicate]

c arrays pointers

Function Pointers in Java

Why do C++ libraries and frameworks never use smart pointers?

Is it good practice to NULL a pointer after deleting it?

Should I store entire objects, or pointers to objects in containers?

c++ stl pointers

Value receiver vs. pointer receiver

function pointers go

How to cast/convert pointer to reference in C++

In C, why do some people cast the pointer before freeing it?

c pointers casting

What do people find difficult about C pointers? [closed]

c pointers

Returning an array using C

c arrays pointers char

How do pointer-to-pointer's work in C? (and when might you use them?)

c pointers

Can I use if (pointer) instead of if (pointer != NULL)?

Why is 'this' a pointer and not a reference?