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 Resposta
+ 2
A pile of playground errors. What are you trying to accomplish? Cheers