Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int const print()
{
printf(" example.com");
return 0;
}
void main()
{
print();
}
β
Correct Answer: (B)
Example.com