Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Is the sizeof(some pointer) always equal to four?

c++ c pointers memory sizeof

size_t vs. uintptr_t

c pointers size-t

What is the difference between char array and char pointer in C?

c arrays pointers

Are there benefits of passing by pointer over passing by reference in C++?

Return array in a function

How to pass objects to functions in C++?

Pointer vs. Reference

NULL vs nullptr (Why was it replaced?) [duplicate]

c++ pointers null nullptr

Pointer to class data member "::*"

c++ class pointers c++-faq

X does not implement Y (... method has a pointer receiver)

pointers go methods interface

Differences between unique_ptr and shared_ptr [duplicate]

What is uintptr_t data type

c++ pointers types

Arrow operator (->) usage in C

c pointers syntax

Why does the arrow (->) operator in C exist?

c pointers dereference

Why use double indirection? or Why use pointers to pointers?

c pointers

When should I use the new keyword in C++?

What is the difference between char * const and const char *?

c pointers constants

Is it safe to delete a NULL pointer?

What is the difference between NULL, '\0' and 0?

c pointers null

Pointers in C: when to use the ampersand and the asterisk?

c pointers