Predict the output of the following code
#includestdio.h
int main()
{
int a[] = {1, 2, 3, 4};
int sum = 0;
for(int i=0;i4; i++)
{
sum += a[i];
}
printf("%d", sum);
return 0;
}


Posted on by