Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Why can I change a local const variable through pointer casts but not a global one in C?

c pointers constants

type of int * (*) (int * , int * (*)())

How to cast program argument *char as int correctly?

c pointers casting char

Question about pointers and strings in C [duplicate]

c arrays string pointers

basic difference between value types and reference types [duplicate]

Isn't an Iterator in c++ a kind of a pointer?

c++ list pointers iterator

C++: Can I get out of the bounds of my app's memory with a pointer?

c++ memory pointers

Why do I say int *p = NULL in the declaration, but p != NULL in the test, why not *p != NULL to match the declaration?

c++ pointers

How can I test this C function

c pointers

Can someone explain the parameter void(*pfn)(void*)?

Character pointers and integer pointers (++)

c++ c pointers

C Void pointer question

c pointers

pointer to array

c++ c arrays pointers

Pointer of void array

Why can't we use direct addressing in c or c++ code?

c++ c pointers

Circular reference in C++ without pointers

What's the best portable way to represent pointer as string in C++?

c++ pointers

char *a, *b; what type is (b-a) and how do I printf it?

c pointers stdio

Swapping addresses of pointers in C++

c++ pointers

What does void *(*routine)(void *) mean in C? [duplicate]