Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

What does char* (int) mean in C++?

c++ pointers

How do I copy a two dimensional array of strings?

java arrays pointers string

C pointer arithmetic snippet

Pointer comparison

c++ c pointers

c++: function arg char** is not the same as char*[]

c++ arrays pointers arguments

Whats the difference between "abc" and {"abc"} in C?

c++ pointers string

C++ pointers to class instances

c++ pointers

Pointer / Array syntax (char **p, *p[n]) in C/C++

c pointers

Pointers into elements in a container

c++ stl pointers

Does myVector.erase(myObject) call delete on myObject?

c++ pointers containers

Is there a way to know what keeps objects alive in C#

Copying value from char pointer to a char array

c++ arrays pointers

How do you define a mutable pointer to a const object?

c++ pointers constants mutable

Returning a pointer of a multidimensional array

c pointers

Is it okay to use the this pointer? [duplicate]

Using qsort() with class pointers

Equivalent of incrementing a C/C++ pointer in Java?

Passing addresses to functions in C

When should I pass "T* const&" type of pointer ?

difference between int bar[10] vs int (*bar)[10]

c arrays pointers types