I have a 2d and i want to set the elements to zero without looping all the elements
int a[100][200];
I can't initialize them at point of declaration.
|
I have a 2d and i want to set the elements to zero without looping all the elements
I can't initialize them at point of declaration. |
|||||||
|
|
Try
If you initialize some (but not all) of the elements, the rest will be initialized to zero. Here, you are only explicitly initializing the first element of the first sub-array and the compiler is taking care of the rest. |
|||||||||
|
|
Try This simply overwrites the memory used by the array with 0 bytes. Don't do this for user-defined data types unless you really know what you do. There's also |
|||||||||
|
or
It's not much harder than |
|||
|
|
|
If this array is declared at file scope, or at function scope but with 'static', then it is automatically initialized to zero for you, you don't have to do anything. This is only good for one initialization, at program startup; if you need to reset it you have to code that yourself. I would use If it's declared at function scope without static, you need to use |
|||
|
|
What exactly does "I can't initialize them at point of declaration" mean? "Don't know how to"? Or "can't modify the code there"? The C++ language has a feature that initializes the entire array to 0 at the point of declaration
(note, no explicit If you can't, then your options are: use the |
||||
|
|
|
The
|
|||
|
|
|
C++ allows multidimensional arrays to be iterated entirely through by a base-element pointer. So you can use
In C this is formally not allowed, and you would need to iterate through each sub-array separately, because iterating beyond the first subarray's past-the-end pointer causes undefined behavior in C. Nontheless, in practice this still works. |
|||
|
|
|
I tested this solution and it worked.
|
|||
|
|