Is there any disadvantage of initializing an array with zeroes as
int a[5] = {0};
In many places, I have seen people using memset or a loop for initialization. Is there any security threat for this?
Is there any disadvantage of initializing an array with zeroes as
int a[5] = {0};
In many places, I have seen people using memset or a loop for initialization. Is there any security threat for this?