I have a code in C .
int a; a =10; printf (\"%d\", &a);
I want to know if some garbage will be printed or error msg will
It will print the address of the variable 'a'. Remember that the & operator returns the address of the operand.