Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Confusing pointers in C

c pointers

Objective C: How does 7 - 1 = 3?

How can I define a template class which gives the pointer depth/level of a type?

c++ templates pointers types

Can someone please explain to me (in very simple terms) what the difference between the esp, ebp, and esi register is?

How to store a const char* in std :: string?

c++ string pointers stl

Getting the address of a pointer

Argument passing by reference to pointer problem

Should `!var` or `var == NULL` be used?

c pointers

Is it safe to hold pointers to iterators in C++?

c++ pointers iterator

passing argument makes pointer from integer

Can std::uintptr_t be used to avoid undefined behavior of out-of-bounds pointer arithmetic?

How pointers in C/C++ actually store addresses?

C++: Will structure be copied properly?

c++ c pointers memcpy

in C++, what's the difference between an object and a pointer to an object?

c++ pointers object

Should I use a smart pointer?

Can we modify the value of a const variable?

Swap nodes in a singly-linked list

Why printf("%s",(char[]){'H','i','\0'}) works as printf("%s","Hi"), but printf("%s",(char*){'H','i','\0'}); fails? [duplicate]

c arrays string pointers casting

Do every variable declared as pointer have to allocate memory?

How to save an unknown Interface to a Pointer?

delphi pointers interface