What is the output of C program with arrays?
int main() { int a[3] = {20,30,40}; int b[3]; b=a; printf("%d", b[0]); }
Answer: A
No answer description available for this question.