unsigned int array[5],length = 5;
for(int i = -1; i < length; ++i)
{
array[i] = i;
printf("%d\n", array[i]);
}
Output: No Output // nothing is printing
I am expecting It should print the array.
Why no output of this c code ? What is the reason ?