Q. Which statement is true about the given code ?
Code:
#include <stdio.h>
int main()
{
printf("%d", main);
return 0;
}
β
Correct Answer: (B)
Gives Address of function main.