What will be the output of the following C code? #include #include void main() { int a[3] = {1, 2, 3}; int *p = a; printf("%p\t%p", p, a); getch(); }
Answers
Answered by
0
Answer:
here you will get the starting address of the array a
Explanation:
please let me know if you need more clarification on this feel free to text me
Answered by
0
Answer:
same address will be print for both p & a
Explanation:
Similar questions