G
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();
}
int const print()
{
printf(" example.com");
return 0;
}
void main()
{
print();
}
- Correct Answer - Option(B)
- Views: 130
- Filed under category C Programming
Discusssion
Login to discuss.