C - Data Types - Discussion

You Are Here :: Home > C > Data Types - Discussion

 



Q.

main()

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

A. main B. 0
C. main 0 D. Some address will be printed

Answer: Option D
Explaination:

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.



Discussion

Your Comments Goes here...
NameDiscussion