R
Q. What is the output of C Program?
Code:
int main()
{
int a[] = {1,2,3,4};
int b[4] = {5,6,7,8};
printf("%d,%d", a[0], b[0]);
}
{
int a[] = {1,2,3,4};
int b[4] = {5,6,7,8};
printf("%d,%d", a[0], b[0]);
}
- Correct Answer - Option(A)
- Views: 128
- Filed under category C Programming
Discusssion
Login to discuss.