Vidyalelo
C Programming · Q17

C Miscellaneous

Programming · C Programming · question 17

Q17

Determine Output: void main() printf("%p", main);

A.
Error
B.
make an infinite loop
C.
Some address will be printed
Answer
D.
None of These

Answer: Option C

Solution

Answer: Option C
Solution:

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.