Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Pointers: initialisation vs. declaration

c++ pointers c++14

Why does cout print char arrays differently from other arrays?

c++ arrays pointers

free a double pointer

c pointers

C++ using square brackets with pointer to instance

c++ class pointers operand

(->) arrow operator and (.) dot operator , class pointer

c++ class pointers

How to convert a pointer value to QString?

c++ qt pointers qstring

Should I use boost::ptr_vector<T> or vector<boost::shared_ptr<T> >?

Another C++ learning moment: returning strings from functions

c++ string reference pointers

C++ singleton GetInstance() return

Why is comparing against "end()" iterator legal?

c++ stl pointers iterator

c - cannot take address of bit-field

What is the type of command-line argument `argv` in C?

allocate matrix in C

c pointers matrix malloc

C sprintf array char pointers

c arrays pointers

C++ const changed through pointer, or is it? [duplicate]

c++ c pointers constants

C++ function parameters: use a reference or a pointer (and then dereference)?

c++ pointers performance

C++: Why is const_cast evil?

Whats better to use in C++11 , Zero or NULL?

c++ pointers c++11

malloc an array of struct pointers

c arrays pointers struct malloc

Why is it thought of 'T *name' to be the C way and 'T* name' to be the C++ way?