What will be the output of this program? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
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 Respuesta
+ 2
A pile of playground errors. What are you trying to accomplish? Cheers
2nd Sep 2018, 1:35 AM
Tony
Tony - avatar