✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output of C Program.?
int main()
{
int a[3] = {20,30,40};
a[0]++;
int i=0;
while(i<3)
{
printf("%d ", a[i]);
i++;
}
}