The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
43 views

Can arrays inside functions be initialized with the return value of functions?Is “int arr[2]={strcmp(”a“,”a“),strcmp(”3“,”5“)};” correct?

Aren't only variables of static storage type expected not to be initialized with return values of functions as those are not considered constants?Going by that argument,isn't the following declaration ...
3
votes
1answer
71 views

Why does “char *ptr={'R','E','D','\0'};” gives too many warnings while “char *ptr=”RED“;” works fine?

Consider the following code: #include<stdio.h> int main() { char *ptr={'R','E','D','\0'}; //char *ptr="RED"; } It shows the following list of warnings: warning: initialization makes ...
0
votes
1answer
59 views

How do I convert this VB.NET array expression to C#

In VB.net, I can write: If {"red", "blue"}.Contains("blue") Then Return True and the Contains seems to be from Linq.Enumerable(Of T). I'm having trouble converting it to C# - when I use an online ...
0
votes
7answers
119 views

syntax error : missing ']' before ';' Array declaration error in C

i am writing in c, using Visual c++. The compiler gives me the errors with the code below: #define SIZE 3; int myMatrix[SIZE][SIZE]; void funcMatrix(int M[SIZE][SIZE]); The errors i get: error ...
-3
votes
5answers
198 views

How to create an array when the size is a variable not a constant?

I've got a method that receives a variable int. That variable constitutes an array size (please, don't offer me a vector). Thus, I need to init a const int inside my method to initialize an array of ...
1
vote
3answers
121 views

Initializing char arrays and MISRA errors

I have the following line (reduced to minimally demonstrate issue): char version_text[64U] = {'\0'}; This line generates the following MISRA error: Error[Pm023]: missing elements - braces shall be ...
1
vote
5answers
111 views

Conditionally add “optional items” with array initialization syntax?

I'm wondering if I can easily have an if statement somehow here: public Object[] tableItemFromVisit(Visit visit, boolean editable) { return new Object[] { visit.getIdVisit(), ...
2
votes
2answers
130 views

Parallelize array creation

F# [|for index in 1 .. items.Count()-1 -> (* create object here - complex operations *)|] C# Object[] newItemArray= new Object[items.Count]; Parallel.For(0, items.Count, index=> { ...
1
vote
1answer
111 views

Eclipse c++ formatting array initializers

The way eclipse formats array initializers is just horrible. I know you can adjust the way it formats in the preferences but it will always put a newline between the '=' and the "{ ... }'. This looks ...
-1
votes
2answers
333 views

Initialization of array error in Verilog

When I initialize an array sbox, I am getting syntax errors. Please help me out. reg [7:0] sbox[15:0]; sbox = '{ 8'h63, 8'h7c, 8'h77, 8'h7b, 8'hf2, 8'h6b, 8'h6f, 8'hc5, 8'h30, 8'h01, 8'h67, ...
1
vote
4answers
80 views

Behaviour of Initializer List for Array of Struct

I have scanned through a few C++ books but none of them describe this in detail: With VC++ 2010, I created a struct with constructors deliberately added for testing: struct BufferElement { ...
0
votes
1answer
152 views

JQuery arrays from innerHTML objects

Learning to code and having a problem creating arrays from jQuery objects. I would like to give the user the option of adding as many "Favorite Books" as they want to their profile. The UI is ...
4
votes
2answers
132 views

Easy way to initialise array of reference types?

By default, an array of reference types gets initialised with all references as null. Is there any kind of syntax trick to initialise them with new default objects instead? eg public class Child { ...
-3
votes
4answers
533 views

initialize char array - C and C++

I was asked what this syntax means: char data[32] = {1}; I can't remember or find it on google.. but I remember that this exists. Can anyone remember?
1
vote
2answers
510 views

Shortcut for creating character array

Since I like to Split() strings, I usually use new char[] { ';' } or something like that for a parameter for Split(). Is there any shortcut for creating a character array with one element at ...
0
votes
3answers
221 views

Dynamic array in a class in C++

I have a dynamic array, for which I allocate memory with a function inside my class: double *val; int n; // dimension void alloc (int nn) { // memory allocation for vector n = nn; val = new ...
6
votes
3answers
1k views

Initialize List<> with Arrays.asList

Why does this work: String[] array = {"a", "b", "c"}; List<String> list = Arrays.asList(array); but this does not: List<String> list = Arrays.asList({"a","b","c"});
45
votes
5answers
2k views

Braces around string literal in char array declaration valid? (e.g. char s[] = {“Hello World”})

By accident I found that the line char s[] = {"Hello World"}; is properly compiled and seems to be treated the same as char s[] = "Hello World";. Isn't the first ({"Hello World"}) an array containing ...
2
votes
4answers
135 views

Generic parameter in c#

I have this classes: interface Info{} class AInfo : Info { } class BInfo : Info { } class SendInfo { static public f_WriteInfo(params Info[] _info) { } } class Test { static void Main() ...
0
votes
3answers
613 views

Dynamic-memory-allocation of an array within a struct,

I don't understand how to Dynamic allocate memory for an array of structs within another struct. As in, here is my problem... I have a project.c file that contains the main, I have another ...
10
votes
2answers
2k views

Why can't you use shorthand array initialization of fields in Java constructors?

Take the following example: private int[] list; public Listing() { // Why can't I do this? list = {4, 5, 6, 7, 8}; // I have to do this: int[] contents = {4, 5, 6, 7, 8}; list = ...
2
votes
1answer
169 views

Mono 2.6.7: Array Initializer Bug?

Originally Title : "Mono 2.7: Array Initializer Bug" I'm having an issue with mono where array initialization (at least for multidimensional arrays) does not work when inlined in a method call. It ...
0
votes
1answer
475 views

initializing a global char array in objective c

my class @interface appViewController : UIViewController { ... char Sequence[5][102]; ... } i have ...
21
votes
2answers
18k views

All possible C# array initialization syntaxes

Can you list all possible array init. syntax that is possible with c#. It gets really confusing to know when it is an array initializer or a seperate declaration. Note: I've searched the MSDN, google ...
1
vote
2answers
141 views

would the pointer returned by new(size, value) Type[0] be legal and could it be used to build an array?

The standard says, in 5.3.4[expr.new]/7 When the value of the expression in a direct-new-declarator is zero, the allocation function is called to allocate an array with no elements. and in ...
4
votes
4answers
818 views

Why the difference between int a[5] = {0} and int a[5]={1} (Missing Feature) [closed]

When we initialize an array like this int a[5] = {0}, the compiler makes all 5 elements 0. That is really good, compact-initialization and useful feature. But I wonder why the compiler doesn't ...
2
votes
0answers
9k views

Java syntax error on tokens, misplaced constructs - array initialization [closed]

I have the following code in Java 5: for (Object o : theList) { for (int k=0; k<theList.size(); k++) int[][] m = new int[7][7]; m = theList.get(k); for (int i=0; i<7; i++) { ...
16
votes
4answers
8k views

Array initializing in Scala

I'm new to Scala ,just started learning it today.I would like to know how to initialize an array in scala. Example Java code String[] arr={"Hello","World"}; What is the equivalent of the above ...
1
vote
4answers
2k views

How to create table (array) with extern values?

I would like to create a static (file scope) table of data pointer, data size and data version. The problem is that the data are in external files, but constants in the extern files. Example: ...
3
votes
3answers
4k views

Array Concatenation in C#

1- How to smartly initialize an Array with 2 (or more) other arrays in C#? double[] d1=new double[5]; double[] d2=new double[3]; double[] dTotal=new double[8];// I need this to be {d1 then d2} 2- ...
8
votes
8answers
1k views

Is it good practice to initialize array in C/C++?

I recently encountered a case where I need to compare two files (golden and expected) for verification of test results and even though the data written to both the files were same, the files does not ...
5
votes
7answers
274 views

Why passing {a, b, c} to a method doesn't work?

I've tried to pass an initialization list {...} to a constructor and it didn't work. When I instead declared it in a method local variable (int[]) it worked flawlessly. Why is that? public class ...
16
votes
5answers
12k views

C/C++: Array size at run time w/o dynamic allocation is allowed?

I've been using C++ for a few years, and today I don't know if this is a mere brainfart or what, but how can this be perfectly legal: int main(int argc, char **argv) { size_t size; cin ...