Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Pointer arithmetic with NULLs

c pointers

Confused by single pointer and double pointer arguments in function calls

Passing function Pointers in C++

should we teach pointers in a "fundamentals of programming" course?

pointers computer-science

Segmentation fault when using stream extraction into a char pointer

c++ pointers

In C/C++, is char* arrayName[][] a pointer to a pointer to a pointer OR a pointer to a pointer?

Pointer to an array of function pointers

c function pointers

Returning a pointer

c++ pointers

C++ function parameter takes an address of a pointer as an argument. How is this used? What is it for?

What is wrong with the following code dealing with pointers?

c pointers

Understanding declaration in C++

c++ pointers reference

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