Afficher un message
Vieux 04/02/2008, 19h25   #1
Nikhil Bokare
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Output of the printf(a,*a,**a) where a is of type int [][][]

#include<stdio.h>

int main()
{
int a[3][3][3];
printf("%d %d %d %d",a,*a,**a,&a);
}

I tried the above code and got the same value for a, *a , **a and &a.
Can anyone please tell me the reason behind such a behavior?
  Réponse avec citation
 
Page generated in 0,04495 seconds with 9 queries