Tagged Questions
66
votes
12answers
189k views
How to initialize an array in C
I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, ...
3
votes
5answers
1k views
Array initialization with default constructor
public class Sample
{
static int count = 0;
public int abc;
public Sample()
{
abc = ++Sample.count;
}
}
I want to create an array of above class, and want each ...
3
votes
6answers
19k views
How to set array length in c# dynamically
I am still new to C# and I've been struggling with various issues on arrays. I've got an array of metadata objects (name value pairs) and I would like to know how to create only the number of ...
1
vote
2answers
3k views
How to initialize two-dimensional arrays in Fortran
In C you can easily initialize an array using the curly braces syntax, if I remember correctly:
int* a = new int[] { 1, 2, 3, 4 };
How can you do the same in Fortran for two-dimensional arrays when ...
0
votes
4answers
5k views
C#: PointF() Array Initializer
I need to hard code an array of points in my C# program. The C-style initializer did not work.
PointF[] points = new PointF{
/* what goes here? */
};
How is it done?