Search code examples
How do I allocate a 3D array in C++ on the free store?...


c++arrayspointersdynamic-memory-allocation

Read More
How to return pointer to array of struct in C...


arrayscpointersstructdynamic-memory-allocation

Read More
Why am I getting junk values despite using calloc()?...


cmatrixdynamic-memory-allocation

Read More
Getting issue with placement new and delete operator...


c++operator-overloadingdynamic-memory-allocationnew-operatordelete-operator

Read More
Should i use 'malloc(0)' or 'free() and then set variable to NULL'? What's bette...


c++type-conversionmallocuser-inputdynamic-memory-allocation

Read More
Malloc multiple connected structs in order to seperate scopes in a type checker...


cstructdynamic-memory-allocation

Read More
C allocation - why is visual studio 2019 asking me to allocate memory and codeBlocks is not?...


cvisual-studio-2019dynamic-memory-allocationallocation

Read More
what's going wrong here with realloc()?...


cmallocdynamic-memory-allocationreallocmemory-reallocation

Read More
How to create an array and start its lifetime without starting the lifetime of any of its elements?...


c++arraysdynamic-memory-allocationc++20lifetime

Read More
Program efficiency, allocate memory for both read and write...


cdynamic-memory-allocationmemory-efficient

Read More
Understanding dynamic memory allocation...


cpointersmultidimensional-arraymallocdynamic-memory-allocation

Read More
Dynamic allocation of a string in a linked list problem...


clinked-listdynamic-memory-allocation

Read More
Returning the address of a local variable and dynamically created variable...


cpointersdynamic-memory-allocationdangling-pointer

Read More
Does size of shared memory change during execution?...


c++shared-memoryheap-memorydynamic-memory-allocation

Read More
garbage values while dynamic memory allocation...


cdynamic-memory-allocation

Read More
Will delete the pointer to pointer cause the memory leak?...


c++dynamic-memory-allocationc-strings

Read More
there is some issue with memory allocation, segmentation fault...


clinked-listmallocsparse-matrixdynamic-memory-allocation

Read More
Dynamic Allocation of 2d Array, pointers. filling, printing...


cpointersdynamic-memory-allocation

Read More
Memory allocation when passing a std::vector to a function in C++...


c++pointersparameter-passingdynamic-memory-allocation

Read More
Getting address boundary error when working with pointers in C...


cdynamic-memory-allocationreallocfunction-definitionnull-pointer

Read More
C Programming: Reading data from a file, dynamically allocating memory, placing contents in struct a...


cstructmallocdynamic-memory-allocationrealloc

Read More
How to allocate pinned memory to a 2-dimensional array using CudaMallocHost?...


cudadynamic-memory-allocation

Read More
How can I fix the memory leaks of this program, when I know what it leaks, most of the times?...


cpointersdynamic-memory-allocation

Read More
Allocating and freeing dynamic memory...


cdynamic-memory-allocationfreefclose

Read More
How to read a string of unknown size in C++...


c++dynamic-memory-allocation

Read More
Matrix multiplication of 10000 X 10000...


c++matrixpthreadsbig-odynamic-memory-allocation

Read More
Is there a way to reliably malloc the same block of memory as a previously freed block, then access ...


cmallocdynamic-memory-allocationfreeundefined-behavior

Read More
Should I free memory in C if it is not allocated properly?...


cmemorydynamic-memory-allocation

Read More
Should I use free() in Subfunction after malloc()?...


cmallocdynamic-memory-allocationfree

Read More
Array of pointers in C with easy iteration...


arrayscfor-loopiterationdynamic-memory-allocation

Read More
BackNext