Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in pointer-arithmetic

C null pointer arithmetic

Output of C program with complex pointer arithmetic

Is pointer difference between two arrays defined on specific implementations?

Can you explain the purpose of array+5 in this program?

Is apparent NULL pointer dereference in C actually pointer arithmetic?

C Fraction Arithmetic

How does a hardware trap in a three-past-the-end pointer happen even if the pointer is never dereferenced?

C - Why cast to uintptr_t vs char* when doing pointer arithmetic

Is arithmetic on pointers associative?

Do pointers support "array style indexing"?

In C, should I be allowed to use pointers to arrays of incomplete types?

Pointer arithmetic using cast to "wrong" type

Can std::uintptr_t be used to avoid undefined behavior of out-of-bounds pointer arithmetic?

Using void pointer to an array

Why can two std::vector iterators not be summed?

Reading signed char using %u

Difference between two pointer variables [duplicate]

Pointer/Address difference [duplicate]

uintptr_t portable alternative

What are the differences between a+i and &a[i] for pointer arithmetic in C++?