It depends where the array was declared.
At global scope, it will contain zeroes, but any non-static, local scope array may contain anything.
, if i declare an array as : "char a[100] = 0;"
You can't declare it that way, the compiler will complain.
It depends where the array was declared.
At global scope, it will contain zeroes, but any non-static, local scope array may contain anything.
, if i declare an array as : "char a[100] = 0;"
You can't declare it that way, the compiler will complain.