Question 6
Answer saved
Marked out of 1.00
1. What will be the output of the following C code?
#include
void main()
{
int a[3] = {1, 2, 3};
int *p = a;
printf("%p\t%p", p, a);
}
a. a) Same address is printed
Ob. b) Different address is printed
Oc. c) Compile time error
Od. d) Nothing
Clear my choice