Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

What does `((void (*)())0x1000)();` mean? [duplicate]

c pointers void

What is the difference between QPointer, QSharedPointer and QWeakPointer classes in Qt?

How to use pointer expressions to access elements of a two-dimensional array in C?

memcpy vs for loop - What's the proper way to copy an array from a pointer?

c++ arrays pointers copy

What does '**' mean in C?

c++ c syntax pointers operators

C++ pointer assignment

c++ pointers

Why are two raw pointers to the managed object needed in std::shared_ptr implementation?

c++ pointers c++11 shared-ptr

C++ standard: dereferencing NULL pointer to get a reference? [duplicate]

c++ pointers reference null

Efficiency on a 64-bit platform: pointer vs 32-bit array indexing

returning a local variable from function in C [duplicate]

c pointers local-variables

Is passing pointer argument, pass by value in C++?

C# ref is it like a pointer in C/C++ or a reference in C++?

Why isn't it legal to convert "pointer to pointer to non-const" to a "pointer to pointer to const"

Why isn't this pointer arithmetic allowed in C? [duplicate]

c arrays pointers

Accessing array values via pointer arithmetic vs. subscripting in C

Does C check if a pointer is out-of-bound without the pointer being dereferenced?

c pointers language-lawyer

Can a pointer (address) ever be negative?

c pointers return-value signed

Copying derived entities using only base class pointers, (without exhaustive testing!) - C++

What's a modern term for "array/pointer equivalence"?

c arrays pointers terminology

Accessing the [] operator from a pointer

c++ pointers operators