What will be the output of this program? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
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); }

1st Sep 2018, 11:24 PM
RahimUnnisa Khan
RahimUnnisa Khan - avatar
1 Réponse
+ 2
A pile of playground errors. What are you trying to accomplish? Cheers
2nd Sep 2018, 1:35 AM
Tony
Tony - avatar