main( )
{
int i=10,j=20;
printf("%d%d",&i,&j);
return 0;
}
When i executing this code: I got the address values like -12, -10, -20
Is it the address are in negative values or I am doing a mistake in the program.
please give the solution it's urgent.