C programming Part II
What is output by the following code?
char nums[] = { 17, 23, 14, 7, 11, 3 };
for (int i = 1; i < 6; i++)
{
printf("%i ", nums[i]);
}
What is output by the following code?
char nums[] = { 17, 23, 14, 7, 11, 3 };
for (int i = 1; i < 6; i++)
{
printf("%i ", nums[i]);
}