0
votes
5answers
62 views
Returning a structure array using pointers
typedef struct unit_class_struct {
char *name;
} person;
person * setName() {
person * array;
array = malloc (2 * sizeof(person));
array->name = …
0
votes
6answers
80 views
Getting javascript to search an array within an array
I have the following javascript to loop through an array of records, and alert the number of matches found within the array, for each field:
…
1
vote
4answers
67 views
How to get the maximum of more than 2 numbers in Visual C#?
I have an array of five numbers and an array of 2 numbers. How would I find out the largest number among these 7 numbers? Is there a method that can make things easier?
1
vote
3answers
49 views
How to easily order an array from largest to smallest in Visual C#?
I have a small array of ints. I want to reorder the array from largest to smallest. Is there a method to do this?
0
votes
3answers
45 views
How to sort an array of objects in Visual C#?
I have an object that has two members that are both integer values. I made an array of these objects. Each objects values are filled with random integers.
I want to sort the array of objects …
1
vote
4answers
104 views
How to get the second highest number in an array in Visual C#?
I have an array of ints. I want to get the second highest number in that array. Is there an easy way to do this?
1
vote
1answer
84 views
How to clear an array in Visual C#
I have an array of ints. They start out with 0, then they get filled with some values. Then I want to set all the values back to 0 so that I can use it again, or else just delete the whole array so …
3
votes
5answers
80 views
How to declare a two dimensional array most easily in PHP?
Like :
declare int d[0..m, 0..n]
-1
votes
4answers
45 views
How to read till end of file in MATLAB?
I have a file a.txt:
03,17.406199
05,14.580129
07,13.904058
11,14.685388
15,14.062603
20,14.364573
25,18.035175
30,21.681789
50,22.662820
The number of rows in the file are not known. I want to …
1
vote
3answers
73 views
Java: Finding the highest value in an array
For some reason this code is printing three values for the highest value in the array when I'm trying to print just one (which is 11.3). Can someone please explain to me why it is doing this?
Thanks.
…
7
votes
6answers
251 views
In JavaScript, why is [ ] preferred over new Array(); ?
I remember reading somewhere (I think it was in one of Crockford's papers) that using an array literal [] is better than using the new Array(); notation.
But I can't really remember any advantages of …
2
votes
4answers
62 views
C# Extend array type to overload operators
Hi,
I'd like to create my own class extending array of ints. Is that possible? What I need is array of ints that can be added by "+" operator to another array (each element added to each), and …
2
votes
7answers
123 views
Comparing character arrays with an == operator in C
I know that the correct way to compare "strings" in C is by using strcmp, but now I tried comparing some character arrays with the == operator, and got some strange results.
Take a look at the …
1
vote
4answers
59 views
Can you say that associative arrays in PHP are like 2D arrays?
Can you say that associative arrays in PHP are like 2D arrays?
0
votes
2answers
81 views
C - Dynamically initializing arrays.
I'm trying to find the equivalent of int myArray[n], except I don't know what n is without input.
Is the following code supposed to work? (I need to use kmalloc instead of malloc).
int * pages;
…
