Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Function to dynamically allocate matrix

c pointers matrix dynamic malloc

Trouble with Nodes and Linked Lists

Should a function return a "new" object

What is the difference between "int *p =0;" and "int *p; *p=0;"

How can I use pointers to display strings in an array?

c pointers string

Any way to detect whether the pointer points to array?

c++ arrays pointers

std::map, references, pointers and memory allocation

pointers to functions

How to keep a list of instances of a class?

c++ pointers raytracing

Casting int pointer to char pointer causes loss of data in C?

c pointers

operator "<<" to a pointer

CLI/C++: void* to System::Object

Passing a pointer to a list in Python

python list pointers

What are the pros & cons of using an array of structures versus an array of pointers to a structure?

C++ reassign pointer then delete it

c++ pointers

C pointers: difference between while(*s++) { ;} and while(*s) { s++;}

c pointers

Strlen in Malloc

c pointers

Why some people don't check for NULL after calling malloc?

C: what does `int a[10]` mean

c arrays pointers

What's the difference among (const char *str) , (char const *str) and (char *const str)? [duplicate]

c pointers constants