0
votes
0answers
18 views
multi-dimensional array transmit issue
Hello everyone,
I am using VSTS 2008 + Native C++ to develop RPC programs (both client and server). I am reading MSDN document for marshalling multi-dimensional array
http://msdn …
5
votes
3answers
69 views
Java Array Sort descending?
Is there any EASY way to sort an array in descending order like how they have a sort in ascending order in the Arrays class http://www.j2ee.me/javase/6/docs/api/java/util/Arrays.ht …
2
votes
5answers
126 views
how many strings in a const char* str[] ?
const static char *g_szTestDataFiles[] = {
".\\TestData\\file1.txt",
".\\TestData\\file2.txt",
".\\TestData\\file3.txt",
".\\TestData\\file4.txt",
".\\TestData\ …
2
votes
5answers
96 views
Copying arrays of structs in C
Hi there,
It's been a long since I don't use C language, and this is driving me crazy. I have an array of structs, and I need to create a function which will copy one array to ano …
1
vote
4answers
49 views
Splitting up html code tags and content
Does anyone with more knowledge than me about regular expressions know how to split up html code so that all tags and all words are seperated ie.
<p>Some content <a href= …
0
votes
4answers
60 views
Append value to multidimensional array
function append (array, value, dimension) {
switch (dimension) {
case 0:
array.push( value );
break;
case 1:
array[array.length-1].push( value );
…
2
votes
6answers
97 views
Initialize a 2D-array at declarationtime in the C programming language
How do I initialize a 2D array with 0s when I declare it?
double myArray[3][12] = ?
-2
votes
6answers
236 views
How to get array size for dynamic created memory
Consider an example:
void main()
{
int *arr;
arr=new int[10];
}
How can I know the size of arr?
1
vote
5answers
49 views
Multi-dimensional array keys - strange behaviour
I am using a multi-dimensional associative array to keep track of monthly totals, then I want to loop through it using foreach and output the contents.
The totals for each inner …
1
vote
3answers
148 views
Best way to store and retrieve this..?
I've been trying all night, and talk of maps, arrays, vectors and hash_maps have filled my head. im just confused now. i posted a previous question here: http://stackoverflow.com/q …
0
votes
5answers
135 views
Does the array key determine array size in C++?
im storing some settings for objects in an array. the id's of objects are used as the key. the id's start from 100000 and go up. if i was to input data for an object with id 100 00 …
0
votes
3answers
160 views
How to make two arrays into a function in c++?
I have two string arrays "Array1[size]" and "Array2[size]". They both have the same size.
I would like to write a function which contains this two arrays but I am having problems i …
0
votes
5answers
46 views
Javascript: How to sort an array of records by values in one of the fields?
Hi,
Suppose I have an array of records: [{a:0,b:0},{a:2,b:1},{a:1,b:2}]
which I wish to sort in descending order of the "a" field in each record, and alert the sorted records as a …
0
votes
2answers
83 views
How to check the end of the array
I have an array of type int
matrix[][]
and it has values of 0 and 1
000000000
101010111
000010100
110011001
the values are different to the above, however this is a random exa …
-5
votes
9answers
221 views
How can I check whether two arrays have the same number of elements? [closed]
Possible Duplicate:
How to get array size for dynamic created memory
Is there any way to determine the size of a C++ array programmatically? And if not, why?
void main() …
