Tagged Questions

1
vote
1answer
99 views

Ada initializing an array based on user input

I'm coming from Java/C++ to Ada and am having trouble figuring out the small stuff. Is it possible to declare an array and ask the user for the min/max values then initialize it? …
9
votes
13answers
14k 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 m …
4
votes
6answers
6k views

initialize a const array in a class initializer in C++

I have the following class in C++: class a { const int b[2]; // other stuff follows // and here's the constructor a(void); } The question is, how do I initializ …
0
votes
6answers
2k 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 th …
2
votes
6answers
409 views

How do you initialise a const array of TGUID from Interface type data, in Delphi?

I want to initialise an array like this - Const MyArray : Array[0..0] Of TGUID = (IInterface); But it results in - [DCC Error] Test.pas(10): E2010 Incompatible types: 'TGUID' a …
0
votes
5answers
626 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?
4
votes
7answers
2k views

How do you initialize a 2 dimensional array when you do not know the size

Howdy, I have a two dimensional array that I need to load data into. I know the width of the data (22 values) but I do not know the height (estimated around 4000 records, but var …