Q. What is the output of C Program with Functions.?
Code:
int main()
{
void show()
{
printf("HIDE");
}
show();
return 0;
}
β
Correct Answer: (B)
HIDE