Tagged Questions
0
votes
1answer
24 views
Creating a dynamic 2D pointer array of NSObjects in Objective C
I want to store a 2D array of NSObjects using C pointer arrays. I read another StackOverflow question which said that it's possible to do this as follows:
id myArray [10][10];
However I want to ...
-1
votes
3answers
138 views
C++ dynamic allocation
I'm very confused with regard to the following instructions:
#include <iostream>
#define MAX_IT 100
using namespace std;
class Integer{
private :
int a;
public:
Integer(int ...
-6
votes
0answers
23 views
save data dynamically into the config file Array [closed]
How would i call dynamically those 4 values into the this bellow array.Course some users are changing their host or database or user or password.and i want to save data dynamically into here...
...
0
votes
6answers
57 views
Expand array of structs using realloc
I am passing a struct through a function like so...
expandArrayofStructs(Container *container, int n)
This container is one struct and inside of that struct is an array of another type of struct ...
0
votes
2answers
105 views
Difference between dynamic array and normal array [duplicate]
I'm a beginer. I'm confused about the difference between them. I have read a few answers and realized one of the difference is that the dynamic array can be deleted while the normal array can't. But ...
1
vote
2answers
47 views
unwanted returning empty object
In the following code I am attempting (with Jquery) to create objects with arrays and then call those objects to appear in an existing DIV when I click a link.
I have basically created a matrix that ...
1
vote
1answer
30 views
Javascript Generate and Print JSON from dynamic input values
I want to do this without using Jquery, in pure Javascript. All the examples I found are using JQuery.
I have an html page (index.html) with ,
<form id="1">
<input ...
-1
votes
2answers
40 views
Hash of array dynamic
I have to create an array during runtime which is stored in a hash.
How can I achieve this in a smart way ?
Following code does not work since services[...] is not an array.
services = {}
...
3
votes
1answer
72 views
Can anybody help me with my coding issue regarding a dynamic array of structures in C?
#include <iostream>
#include <string>
using namespace std;
struct car
{
string make;
int year;
};
int main()
{
int n;
cin >> n;
car * pt = new car[n];
for ...
0
votes
1answer
38 views
javascript/jquery - dynamically add data by id to an array
Attempting to build a resume creator as a project for codeacademy.
I'm using a button to "save" the user's input to an array so it can later be appended into the resume.
However, I'm failing at ...
2
votes
1answer
132 views
How to generate an array with a dynamic type in F#
I'm trying to write a function to return a dynamically typed array. Here is an example of one of the ways I've tried:
let rng = System.Random()
type ConvertType =
| AsInts
| AsFloat32s
...
-5
votes
2answers
48 views
Invalid conversion what to do?
The code shows an invalid conversion from int to *int how do i fix the problem ... the full detail of error is given below
Error:
WAP to find the maximum in a dynamic array
In function 'int* ...
1
vote
1answer
54 views
realloc(): invalid next size in my code
I'm trying to create a dynamic array in C to implement a queue, when I compile I get the following error: * glibc detected . / Ex: realloc (): invalid next size: 0x0000000001fbe030 **
My code is as ...
0
votes
2answers
33 views
Read multiple values from array dynamically in MATLAB
I have an array of structures.
I'm trying to select several records from the array, that match some condition.
I know there's this option: (For example array A with field f1):
A([A.f1]==5)
Which ...
1
vote
1answer
30 views
Script to search for a value and create a variable dynamically?
Sorry if the question in the title is a bit vague, here's what I'm trying to accomplish:
Is there a script out there that can search a page (or page source) for a particular determined value (for ...
0
votes
1answer
15 views
Call to SetLength returns nil
There is a procedure looking like this:
procedure blabla;
var buffer: array of byte;
begin
Setlength(buffer, 10);
Setlength(buffer, someinteger);
end
after both calls buffer is still nil <- ...
4
votes
3answers
63 views
Perl concept dynamic reference to an array
I am trying to understand in Perl the difference between a normal array reference
\@array and [@array].
Covered in the following article, http://perl-begin.org/tutorials/perl-for-newbies/part2/, it ...
1
vote
3answers
74 views
Dynamic Memory Allocation for Arrays in C
So I'm trying to create a dynamic array in C, using malloc, but for some reason it's not working out. Here's my code:
int* test = (int*) malloc(20 * sizeof(int));
printf("Size: %d\n", ...
0
votes
4answers
110 views
How to make a user defined array of struct in C
I would like the user to define the size of the array when the program starts, I currently have:
#define SIZE 10
typedef struct node{
int data;
struct node *next;
} node;
struct ko {
...
0
votes
2answers
59 views
This code shows error “stu undeclared”?? what should i do
I know this error is because i have declared stu inside the for loop scope but its the necessity of the program.I want to declare an array for each test case (test case should all be input at ...
0
votes
1answer
53 views
How to assign pointer of an “array of object” (C++)
I am a beginner in C++ that confused over dynamic array. I found a way to do it in this site, but I can't seem to make it work for "array of object" in an object. It always break when I read the Rec ...
0
votes
3answers
102 views
Dynamically allocate an array of unspecified size in C [duplicate]
I want to take an input in c and don't know the array size.
please suggest me the ways how to do this..
hello this is
a sample
string to test.
1
vote
1answer
68 views
C++ Outputting strings from a .txt file in to a dynamic array outside of a member methods local scope
To start with, is what I'm asking possible?
I currently have a program with one member method (Read) that reads in strings from a .txt file locally in one member method and just outputs the same data ...
1
vote
0answers
58 views
How to get a property in a dynamically created Object in a dynamically created Array
Basically, I have this dynamically created object being sent back from a PHP script that I put into an array. I store where it's located in the array in the tools the user uses to select what to view ...
0
votes
2answers
37 views
For Loop Creation of new instance of Array in ActionScript 3
Is there any way to create instances of array in a for loop?
Here's my code...
var recArrCon1:Array = new Array(50);
var recArrCon2:Array = new Array(50);
var recArrCon3:Array = new Array(50);
var ...
0
votes
1answer
60 views
CUDA, dynamic array + array. malloc and copy
So I have been stuck on this problem for a while. My struct looks like this:
typedef struct
{
int size;
int dim[DIMENSIONS];
float *data;
}matrix;
Now the problem for me is how to malloc and ...
0
votes
2answers
68 views
BASH: how to create a dynamic array name in a loop
here's what I tried:
n=0
for i in aaa bbb ccc; do
array${i}[$n]=$(date "+%N")
((++n))
done
n=0
for i in aaa bbb ccc; do
echo ${array${i}[$n]}
((++n))
done
any ideas how to make the dynamic ...
0
votes
2answers
54 views
How to add dynamic keys in PHP array
I don't have a glue how to solve my problem.
I want to produce an array like this one:
$days = array(
02=>array(NULL,'request_day'),
03=>array(NULL,'request_day'),
...
-5
votes
3answers
69 views
Cannot Break Out of a “While” loop
I am converting a 2-d char array into a 2-d int array, and I need to break out of the while loop if \0 or \n comes in the string. This code gives segmentation fault.
Definition of Array is and the ...
-4
votes
4answers
61 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
93 views
c++ Dynamic 2d array not using default constructor
I got a problem that is beyond my knowledge. I'm working on a HGE project, but this is a c++ issue, not the HGE engine itself.
The question:
I want to create a 2D array with 3 different animations on ...
0
votes
3answers
47 views
Finding number of elements of a dynamically allocated array
I have a dynamically allocated array called Deck, composed of Card objects which have two values, suit and number.
I need to find the number of cards from my deck array, which I declared as so:
...
-1
votes
1answer
68 views
Trying to fill a 2d array of structures in C++
As above, I'm trying to create and then fill an array of structures with some starting data to then write to/read from.
I'm still writing the cache simulator as per my previous question:
Any way to ...
0
votes
1answer
21 views
inserting into an array of linked lists in java
I have an array of linked lists that I initialized by doing:
hashTable = (T[]) new Object[tableSize];
for(int i = 0; i < tableSize; i++){
hashTable[i] = (T) new LinkedList<T>();
// ...
0
votes
1answer
27 views
Setting size of generic array in java?
I have a private member which is an array of type generics and in my constructor I have a parameter that is to set the size of this array. How could I set my private array to the size specified by the ...
1
vote
2answers
63 views
The display of my char array is short the last few characters. C++
I am wondering why the display of the char array is short few characters. However, when I use length+2, all characters are displayed. I am not sure what I am doing wrong. Your help will be ...
1
vote
2answers
80 views
My append function does not work as expected. C++
I am writing my own append function to append a dynamic character array of string array2 at the end of another dynamic character array of string array1, using a static char buffer[50]. But the ...
0
votes
1answer
362 views
Spring MVC + RequestParam as Map + get URL array parameters not working
I'm currently working on an API controller. This controller should be able to catch any - unknown - parameter and put it in a Map object. Now I'm using this code to catch all parameters and put them ...
1
vote
2answers
96 views
How to save multiple values to a single variable through an activity.
I am creating an application in which I scan a number of bar codes and keep extracting their values and clubbing them in a single place. As simple as this sounds I have been unable to create either an ...
-5
votes
3answers
80 views
Type 'double' unexpected [closed]
I've written a function which calculates determinant of square array. When I tried to create dynamic array and running program, compiler(Visual C++ 2010) thrown an error C2062: type 'double' ...
0
votes
1answer
86 views
Dynamic array as function argument
In main function of my program I've created dynamic array with number of elements specified in variable(after calculations array is deleted):
cin >> bok;
double **macierz;
macierz = new double ...
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
40 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 ...
2
votes
4answers
81 views
Why does a large static array give a seg-fault but dynamic doesn't? (C++)
The following code gives me a segmentation fault:
bool primeNums[100000000]; // index corresponds to number, t = prime, f = not prime
for (int i = 0; i < 100000000; ++i)
{
primeNums[i] = ...
2
votes
1answer
75 views
dynamic-array push function- how does it work?
i know this is a large chunk of code, but im having an issue that hopefully someone can help with... im trying to build an templated expandable array class and use it to build an array of pointers to ...
-4
votes
2answers
91 views
C++ Pointers, Text Files and Dynamic Arrays
Im new to C++ and I have decided to do a little car project as something to do.
Basically I want to store Cars in a text file and then display them, which I have done. The problem is that I want the ...
1
vote
1answer
49 views
How to create a matrix with supplied dimensions or create dynamic variable name in Ruby for each subsequent array?
I'd like to create a class and pass 2 variables to that class; width(x) and length(y). With those variables the program should establish either a matrix or create x number of arrays with y number of ...
0
votes
1answer
49 views
save array in mysql field and search in that field
I have a mysql table looking like this:
id
some_field1
some_field2
variable_fields
datetime
...
Now I want to store more than 1 value in variable_fields like this:
user_id:5;message_id:10
The ...
0
votes
1answer
50 views
How to dynamically create objects from a file?
I'm reading in files such as this with multiple lines like this.
"title,name,something,something,something"
How would I dynamically create new objects with those variables
I am splitting it already ...
0
votes
1answer
255 views
dynamically create input type='text' boxes then add values from each into Backbone.js array
I was wondering how to create a number of text boxes based on a type='number' box...so as soon as someone adds 1 to the number box, another text box field would be appended to the backbone.js ...




