How to initialize all members of an array to the same value?
Recently I read this article, it says "int arr[10] = {0};" doesn't work.
So I thought any arrays of all types of variables can't be filled without using STL.
But it seeems that "int*arr[10] = {NULL}" works.
I mean all the spaces are filled with NULL value.
Why does this happen??