Wednesday, March 16, 2016

Question

Question on Pointers:



main( )
{
int i = 3 ;
printf ( "\nAddress of i = %u", &i ) ;
printf ( "\nValue of i = %d", i ) ;
printf ( "\nValue of i = %d", *( &i ) ) ;
}


0 comments:

Post a Comment