0
What will be the output of this program?
#include <stdio.h> void main( ) { Â Â int arr[ ]={1,2,3,4}; Â Â int *p,(*q)[ ]; Â Â p=arr; Â Â q=arr; Â Â printf("arr=%u &arr=%u p=%u &p=%u q=%u &q=%u",arr,&arr,p,&p,q,&q); }
1 Answer
+ 2
A pile of playground errors. What are you trying to accomplish? Cheers