Tagged Questions

10
votes
4answers
6k 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 ...
8
votes
8answers
916 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 ...
4
votes
4answers
297 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 ...
1
vote
2answers
111 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 ...
1
vote
4answers
654 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: ...