urgent help...required please..PLEASE SEND ME THE REASON
/*PLEASE SEND ME THE REASON*/
#include<stdio.h>
#include<conio.h>
void main()
{
int aa[]={1,2,3};
printf("\n%d %d",aa,aa+1);
/* for this the out put something like: 8874 9239*/
printf("\n%d..........",aa);
printf("\n%d..........",aa+1);
/*and for this output is 8874 and 8876*/
}
/* the same thing is present in three printf ()
one single printf and other twos are in separate printf()...then why the outputs are different */
|