Interview Question 3549

Created by admin on Sat, 17/11/2012 - 12:28
Explanation: 
Function names are just addresses (just like array names are addresses).main() is also a function. So the address of function main will be printed. %p in printf specifies that the argument is an address. They are printed as hexadecimal numbers..
Question: 

main()
{
printf("%p",main);
}

Language: 
Answer: 

Some address will be printed.