#include
int main()
{
int =1000;
float=333333.987654;
printf(“%d \n”,&i);
printf(“%f \n”,&j);
return 0;
}
#include
int main()
{
int =1000;
float=333333.987654;
printf(“%d \n”,&i);
printf(“%f \n”,&j);
return 0;
}
EmbLogic Research & Competency Development Labs
Phone: +91 9818467776, 8527567776, 9650467776
Email: info@emblogic.com
Copyright © EmbLogic Embedded Technologies Pvt. Ltd.
To print the values of any variable the statement should be:
printf(format specifier, variable name);
However to print the address of the variable the statement should be :
printf(format specifier, address of(variable) );
-1079063956
0.000000