1
vote
3answers
63 views

Are pointers used when copying a class with huge array member?

I have a class storing an multidimensional array as member. struct Structure { Structure() { memset(Data, 0, sizeof Data); } int Number; int Data[32][32][32]; } When I ...
0
votes
2answers
49 views

Arrays and overwriting in C++ - can I reuse the same object?

I'm making an array of vectors to save as normals. Because we haven't learned how to do vectors in class yet, I've made a struct which serves just as well: struct vector3 { double xcoord; ...
2
votes
2answers
74 views

How are char ** objects saved?

Today, I asked me, how char ** objects are saved in memory or in binary files. I tested that with the following code snippet: char **array = (char *)malloc(3 * sizeof(char *)); array[0] = "Foo"; ...
-2
votes
1answer
47 views

any idea to convert this read integer value to ascii and also is this the right way to divide the memory into blocks

#include <stdio.h> #include <stdlib.h> #define actualTV 250 #define stopparity ON #define baudrate 11250 #define startparity OFF #define msize 4096 int a[msize]; void read() { int i; ...
1
vote
1answer
32 views

Array compare with memcmp vs element by element comparsion

Which implementation is better and why? Element by Element comparison using a for loop or memcmp() implementation int a[] = {1,2,3}; int b[] = {1,3,5}; memcmp(a, b, sizeof(int)*n) OR for (i = ...
0
votes
1answer
33 views

When do methods like JNI GetDoubleArrayElements set isCopy to true or false?

When would the VM pin vs copy the arrays involved here? If you want to minimize memory usage can you force a pin vs a copy?
-4
votes
4answers
59 views

Assigning Memory to a 2-d Array [closed]

I am assigning memory to 2-d array for which,i know the depth int *array[size]; for(int i=0;;i++) { array[i]=new int[10]; } Am I doing it right?
1
vote
1answer
41 views

Should I unset my PHP array values?

Does garbage collection on array values work like the garbage collection on normal variables? I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
0
votes
3answers
86 views

FIFO String Allocation in C#

I am currently having a problem with the program that I'm creating right now. I already looked for answers, but it's different from what I want to happen because the given here are strings. We were ...
0
votes
1answer
62 views

Memory allocation of array in a struct

I read the code of redis, it define a struct: typedef struct zskiplistNode { robj *obj; double score; struct zskiplistNode *backward; struct zskiplistLevel { struct ...
-3
votes
2answers
91 views

Creating the biggest array of chars which can be alocated

I have tried to check by code how big array I can alocate but my code does not seem to check it. How to make it faster? In the end I would like to get an exception. #include "stdafx.h" #include ...
0
votes
0answers
7 views

Addresses of dynamic versus static arrays?

I noticed that the address of a static array when called with or without & remains the same. However for a dynamic array, it will change as illustrated in the following code: int *a = new ...
0
votes
2answers
36 views

Dynamic memory allocation with arrays

I just started learning about dynamic arrays, so pardon me because this is likely a simple question. From what I have learned, we use dynamic arrays so we can re-size an array while the program is ...
0
votes
4answers
76 views

How is the value of an empty array determined in C [duplicate]

Here is the code. int main(int argc, char *argv[]) { char name[5]; printf("%s\n",name); system("PAUSE"); return 1; } The printf function outputs ©. Why does it use that character? ...
6
votes
4answers
177 views

A workaround for a big multidimensional array (Jagged Array) C#?

I'm trying to initialize an array in three dimension to load a voxel world. The total size of the map should be (2048/1024/2048). I tried to initialize an jagged array of "int" but I throw a memory ...
5
votes
1answer
82 views

Memory size of a Java 32-bit system int[] array

In Java, memory used for occupying the int[] array of size n equals to (4 + n) * 4 bytes. Practically can be proven by the code below: public class test { public static void main(String[] args) ...
0
votes
3answers
69 views

Array memory c# (copied to new reference or using the same?)

So I couldn't seem to figure this out. In the following code: int[] array1 = { 86, 66, 76, 92, 95, 88 }; int[] array2 = new int[6]; array2 = array1; When array2 is "copying" the values of array1, ...
2
votes
4answers
89 views

C - Pointers and Memory

I am a little confused, say in this example code; ptrMem = createSharedMemory(); ptrTemp = ptrMem; ptrMem points to a shared memory location created by SHMGET What is the point in having a ...
1
vote
2answers
76 views

C++ I know the array length but was wondering if a cleaner way of defining the array elements

I have the following: Action* actions[]; within an ActionBar class. I would like in its constructor to do something like this: actions = { new Action( new Image( gfx, ...
0
votes
0answers
80 views

Array causing program crash on second loop only

First off, i'll say thank you in advance for any help you can give. I know this is my first post, and it's going to be a little dense, so I'll apologize for that straightaway. Here goes. So this ...
5
votes
3answers
142 views

Why can C++ functions create arrays of variable lengths?

According to this answer, which states: The compiler knows the size of the int type and therefore can generate the right assembler instruction that will reserve enough space on the stack in ...
3
votes
1answer
60 views

Memory Leak caused by Accessing Undefined Array Index

I am having a script which analyses XML data and fills same arrays with information. For some (huge) input, the script crashed. There is a foreach loop which is run around 180 times without problems ...
0
votes
4answers
96 views

Which is fastest for zeroing-out an array?

The question title is quite self-explanatory. I have an run loop that need a dynamic-sized array. But I do know the maximum of that size is going to be, so if needed, I can max it out instead of ...
0
votes
1answer
36 views

Creating large arrays in mpir

For small arrays and floating number in mpir I get no error messages but when i wanted to create a very large array. say >100,000,000 I get the following error message: GNU MP: Cannot allocate memory ...
121
votes
10answers
4k views

How dangerous is it to access an array out of bounds?

How dangerous is accessing an array outside of its bounds (in C)? It can sometimes happen that I read from outside the array (I now understand I then access memory used by some other parts of my ...
2
votes
6answers
94 views

It creates an array in C, What happen when come out of the program in the memory?

i have this doubt, You supose have an array with one billion of elements and you create the array as follows: int array[1000] = {1,2, ..., n.} and you finish the program. not being like java ...
-1
votes
1answer
84 views

Extra array does not consume memory in Java?

In Java, why this int n = 100000; int[] array = new int[n + n / 2]; int[] arrayzip = new int[n]; System.arraycopy(array, 0, arrayzip, 0, n); hashmap.put(x, arrayzip); and this int n = 100000; ...
0
votes
1answer
109 views

Same Code Giving Different Output in C

I am stumped by this. I am pasting the program below. void printGrid(int n,char grid[n][n]){ for(int i = 0; i<n ; i ++) { printf("\n%s",grid[i]); } } int main() { char ...
0
votes
3answers
151 views

Where are dynamic size arrays created on? (stack or heap)

For example, I have an array with dynamic size based on user input: int n; cin >> n; int items[n]; Is this array allocated on stack? Or is it on heap like if I have written: int n, *items; ...
0
votes
1answer
136 views

First element in two dimensional array being overwritten - C

I've been having the same issue for a while now and I can't seem to get my head around it no matter how much research. I have came up with some theories why it may be happening though. Basically, I'm ...
1
vote
1answer
104 views

How to copy(memory) array in java?

Hi I want to copy an array...and I do not want to use "clone" which is slow to copy.. I tried arraycopy and copyOf, but it is not working for (int i = 0; i < arraySize; i++) { City[] ...
5
votes
4answers
115 views

Memory usage of multidimensional array, does the order makes difference?

How many bytes will be allocated for a and b? import android.graphics.Bitmap; Bitmap[][][] a = new Bitmap[1000][2][2]; Bitmap[][][] b = new Bitmap[2][2][1000]; Note that I'm only asking about the ...
1
vote
1answer
62 views

Save arrays strategy in PHP

I came to this issues recently where I have to decide if I save a list of arrays all in one file or keep it in separeted files. Here's the deal. I have an array of arrays, I'll simplify the example: ...
0
votes
2answers
106 views

Trouble with Game of Life and dynamic arrays, c++

I am trying to program the game of life. When I attempt to iterate generations I end up with garbage. I have tried quite a few different things but I don't see my error, but obviously there is one. ...
0
votes
1answer
209 views

C++ memory pool with char array

I just have a quick question regarding how a char array works in regards to a memory pool and allocating pointers of other variable types to it. I am working on an assignment which uses a char array ...
-4
votes
2answers
91 views

which usses much memory hashset or arrays

i making a datatype which is called randomQueue which enqueue any object, and it dequeues from it randomly i am using arrays as a basic datatype, so my question is which takes more memory hashset or ...
2
votes
2answers
146 views

Dynamic 2d Array non contiguous memory c++

Say I passed the address of the 2d array to a function along with its row and column of the 2d array. The function will treat the address of the 2d array as 1d array. (eg. int matrix[] ) If i ...
0
votes
1answer
41 views

Dangling pointer in dynamically allocated array of pointers

Is this a dangling pointer? int x = 25; int** arr = new int*[5]; *arr[1] = x; I can't figure out why this doesn't work... *arr[1] is just a pointer, and is pointing to a valid memory address.
0
votes
4answers
63 views

Create Array Beginning at Specific Address

In C++, is it possible to create an array of a specific size (such as short array[2048]) which begins at a specific address, such as 0x1000?
3
votes
1answer
83 views

Numpy array memory management

I have a question about Numpy array memory management. Suppose I create a numpy array from a buffer using the following: >>> s = "abcd" >>> arr = numpy.frombuffer(buffer(s), dtype = ...
0
votes
7answers
125 views

Does setting an array (int*) to NULL free the memory it occupies?

Say I have an array declared as: int* array; and I fill the array with however many integers. If I later say array = NULL; does this free the memory that the numbers in array occupied, or does ...
6
votes
5answers
312 views

How to store 100 million integers in a Java array?

I am working on a small task where I am required to store around 1 billion integers in an Array. However, I am running into a heap space problem. Could you please help me with this? Machine Details ...
0
votes
1answer
25 views

What if a set of values ​​does not fit in an array?

I am programming in C++. There is a very long set of numbers ​​(more than 8 billion elements). All the numbers are real (type double). I have to calculate, for example, the average of all of these ...
-1
votes
3answers
108 views

C - Free a definite Amount of Memory (char**)

I have to safely free an array: char** a; It's like a string list. I know how many char* I have in it. But I have trouble to release ALL the memory. Is there like a function that I can use like to ...
0
votes
4answers
99 views

Invalid memory access fortran inspector

I'm getting wrong calculated values if I run my fortran program with arrays (look at the code). If I use the intel inspector (-mi3) it will tell me that there are memory problems "invalid memory ...
0
votes
3answers
61 views

Memory manipulating - what am I doing wrong?

Right, so I'm playing around with memory moving data around. I'm having trouble here. What can I be doing wrong? I've accounted for the null terminator and it still doesn't output what I expect. char ...
0
votes
4answers
129 views

Using too much Ram in Java

I'm writing a program in java which has to make use of a large hash-table, the bigger the hash-table can be, the better (It's a chess program :P). Basically as part of my hash table I have an array of ...
2
votes
1answer
62 views

Arrays pointing to the same block of memory in c++?

I have a strange problem. I have the following piece of code in C++: int grid[h][w]; int dp[h][w]; int p[h][w]; for(int y = 0; y < h; y++) for(int x = 0; x < w; x++) cin >> ...
4
votes
3answers
87 views

Can I create a new array reference which contains a subset of an existing array, without copying memory?

I am building a file reader in C#, and large volumes of data will be enumerated. I want to use the same buffer for each element I read out, then pass the buffer on for further processing by the ...
0
votes
1answer
39 views

C: Array element availability discrepancy?

So, I uncovered a "discrepancy"--or, more likely, a gap in my understanding of arrays in C. Below is a trivial program to reverse strings. The discrepancy is noted within the code's comments. ...

1 2 3 4 5 6