Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointers

C: Which is faster, accessing global variable or passing a pointer to the function

c variables pointers global

Pointer arithmetic in c and array bounds

c pointers

why does *p++ = *p - a give strange results?

custom memory allocator

Address of map value

c++ pointers map

Declare const pointer to int?

pointers integer constants d

Are "malloc(sizeof(struct a *))" and "malloc(sizeof(struct a))" the same?

c pointers struct

Reversing a array of character in its own place

c string pointers

Properly seeding rand_r(int *val) method

c pointers

Increment the value of a pointer when sent as a parameter

c++ c pointers microcontroller

Take address of value inside an interface

In Go, can both a type and a pointer to a type implement an interface?

pointers interface struct go

How to loop through a string created by pointer

c string loops pointers

Write a function to malloc double pointer

c pointers malloc

Is a global pointer initialized to zero?

new and make_shared for shared pointers

Are C stack variables stored in reverse?

Why does pointer subtraction in C yield an integer?

c pointers

If C# pointers are considered "unsafe," does that mean C++ pointers are "unsafe" too?

c# c++ arrays pointers unsafe

Passing `int (*)(char const*)` where `int (*)(char*)` is expected