Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

Is it safe to pass a void pointer to function that accepts a non-void pointer?

c pointers void-pointers

Propagate constness to data pointed by member variables

Array pointer data being cleared in between function calls without an explicit command?

what is `int *userMask[3][4]` pointing to?

c arrays pointers

Why can I implicitly convert an int literal to an int * in C but not in C++?

c++ c pointers casting

Passing a pointer to enum to a function

c++ pointers enums

Is a Linked-List implementation without using pointers possible or not?

c++ pointers linked-list

What do we iterate through when using pointer to an array? [duplicate]

c++ c arrays pointers

Casting structure pointers between structs containing pointers to different types?

c pointers struct casting size

How to add null terminator to char pointer, when using strcpy

c pointers char malloc strcpy

pointer to array type, or what's happening to "array decay to pointer" when adding "typedef", "const", "*" and "&"

c arrays pointers constants

using %x to print the hex address contained in a pointer

c pointers memory-address

C Struct & Strcpy, dot operator does it resolve into a pointer

c arrays pointers struct

How to declare function with a const pointer using VLA syntax

c pointers

error: passing argument 1 to restrict-qualified parameter aliases with argument 3 [-Werror=restrict]

What does the "->" operator mean in C++?

Incompatible pointer type warning with pointer-to-pointer types when passing char** to void** function parameter

Portable and safe way to add byte offset to any pointer

Malloc inside a structure

c pointers struct malloc

How to properly cast to a void type as an array

arrays c pointers types