What will be the output of the following C code?
#include <stdio.h>
int const print()
{
printf("example.com");
return 0;
}
void main()
{
print();
}
#include <stdio.h>
int const print()
{
printf("example.com");
return 0;
}
void main()
{
print();
}
A. Error because function name cannot be preceded by const
B. example.com
C. example.com is printed infinite times
D. Blank screen, no output
Answer: Option B
Join The Discussion