Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

How do you add Derived objects to a vector of unique_ptr

c++ pointers vector unique-ptr

Why weak pointer is getting created with shared_ptr?

Reverse an integer array of length 2^n recursively and return a new array without modifying the original

c arrays pointers recursion

Pointing to a const pointer (or a pointer to a const)

c++ pointers

What is the meaning and use of the sentence "C++ compilers use a binary object layout"

A minor confusion in C

c pointers

Is a[n] really interchangeable with *(a+n) - why does sizeof return two different answers?

c arrays pointers

C: Incompatible pointer type initializing

c arrays pointers

Passing multidimensional array by reference in C

c pointers

Can I convert a pointer address (i.e. an hex integer) to decimal and octal base int in C++

c++ pointers

Pointer Initalization

c++ pointers

Why isn't the compiler generating an error "lvalue required"?

c pointers lvalue

What is char*argv[ ] and how is it similar to char **argv

pointer to string and char catch 22

c++ c pointers

Global Char Pointer (C Programming)

c pointers struct

Why does this work? [C++; void pointer]

c++ arrays pointers

pointer arithmetic on arrays

c++ arrays pointers

Is there any advantage to using a naked pointer rather than a weak_ptr?

Difficulty in understanding the offsetof MACRO