Which of the following pairs of statements are not treated as identical by the compiler?
A
int foot (int*i); int foo(inti[])
B
a[i]=5; i[i]=5
C
char c [10];char*c;
D
void bar(int); void bar (int x)
Correct Answer: char c [10];char*c;