Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Two almost identical C++ program, one runs well but the other get runtime error [closed]

Accessing address of struct element via pointer-to-pointer

c++ c pointers memory struct

If a pointer to pointer is NULL, then is it necessary that the pointer is also NULL?

c pointers null

Pointer to generic type

Deleting a heap then dereferencing a pointer to that memory

c++ pointers heap-memory

Can I call functions that take an array/pointer argument using a std::vector instead?

c++ arrays pointers stl vector

In C, how does arithmetic between a pointer and an array work?

c pointers

How do I delete this 2D array in c++

What is Pointer-chasing and how it is related to BFS

algorithm pointers

Bash indirect reference to an associative array

warning: address of local variable 'angles' returned [-Wreturn-local-addr]

Should I delete pointer passed to a function as argument?

Deleting Pointers

c++ pointers

Dynamic array without malloc?

K&R: array of character pointers

Is this C function written in poor form?

Object allocation in C++

c++ string pointers scope

Return the result of sum of character arrays

c++ c arrays pointers

C Beginner question: Pointer arithmetic > cleaning up once you are done

difference between *y++ and ++*y?