Computer Science, asked by sona8912, 9 months ago

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 amruthamanisai587
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 sagar3655
0

Answer:

same address will be print for both p & a

Explanation:

Similar questions