Search code examples
Understanding static/dynamic array access with pointer arithmetic in C...


arrayscpointerspointer-arithmeticconceptual

Read More
What do these quotes say about pointer arithmetic?...


cpointerslanguage-lawyerpointer-arithmetic

Read More
C/C++: Pointer Arithmetic...


c++cpointersmathpointer-arithmetic

Read More
Correct way to get an array through low-level allocation functions...


c++arraysmemory-managementlanguage-lawyerpointer-arithmetic

Read More
lifetime of an array after placement new...


c++arraysstoragelifetimepointer-arithmetic

Read More
Subtracting registers with an LEA instruction?...


assemblyx86x86-64pointer-arithmeticaddressing-mode

Read More
Invalid optimization for pointer comparison in GCC? (introduced in GCC 7.1)...


cpointersgccpointer-arithmetic

Read More
Accessing array values via pointer arithmetic vs. subscripting in C...


objective-ccarrayspointerspointer-arithmetic

Read More
What is the rationale for limitations on pointer arithmetic or comparison?...


c++cpointerslanguage-designpointer-arithmetic

Read More
Iterating over array of polymorphic objects...


c++arrayspointerspointer-arithmetic

Read More
How can I get the memory distance in bytes between any two objects (if this measurement exists in a ...


c++pointerscachingundefined-behaviorpointer-arithmetic

Read More
Why can't I change the value of a constant using pointers in C++?...


c++pointersconstantsmemory-addresspointer-arithmetic

Read More
Would P1839 make it possible to access subobjects from offsets into object representations?...


c++language-lawyerpointer-arithmetic

Read More
Delphi: double indexing a pointer-of-array leads to “Array type required” error...


arrayspointersdelphidereferencepointer-arithmetic

Read More
Problem in using the delete operator for an array of objects allocated in heap using a FOR loop inst...


c++loopspointer-arithmetic

Read More
Why does i[arr] work as well as arr[i] in C with larger data types?...


carrayspointerspointer-arithmetic

Read More
Pointer arithmetic in Go...


pointersgopointer-arithmetic

Read More
Modification pgm fill 2-D Array using a pointer and it doesn't work...


cfor-loopnested-loopspointer-arithmetic

Read More
Unexpected value when dereferencing pointer in C...


cpointerspointer-arithmeticformat-specifiers

Read More
different between *p[num] and (*p)num...


cpointersmultidimensional-arrayimplicit-conversionpointer-arithmetic

Read More
Can I move between contiguous sequences of fields of the same type in a struct using pointer arithme...


cpointersstructmemory-alignmentpointer-arithmetic

Read More
What does the "!= data + arraySize" mean in C++?...


c++arraysalgorithmiteratorpointer-arithmetic

Read More
How to interpret *(ptr) and *(ptr+2) in arrays?...


arrayscpointersimplicit-conversionpointer-arithmetic

Read More
Program runs but Valgrind detecting a problem when attempting to write to malloc'd memory...


csegmentation-faultmallocvalgrindpointer-arithmetic

Read More
How to increment a pointer address and pointer's value?...


cpointersoperatorsincrementpointer-arithmetic

Read More
p1 and p2 are pointers to ints, if p2>p1 is valid, is p2-p1 valid?...


c++pointerslanguage-lawyerpointer-arithmetic

Read More
void* vs. char* pointer arithmetic...


cpointersvoid-pointerspointer-arithmeticchar-pointer

Read More
C: Adding two 32-bit unsigned integers from raw memory bytes...


cpointersmemorytype-conversionpointer-arithmetic

Read More
What are use cases for writing (&var + 1) if var is not an array element?...


arrayscallocationpointer-arithmetic

Read More
Trouble understanding char* and string in CS50...


ccs50implicit-conversionstring-literalspointer-arithmetic

Read More
BackNext