Q. What is the output of C Program with functions.?
Code:int main()
{
show();
printf("BANK ");
return 0;
}
void show()
{
printf("CURRENCY ");
}
β
Correct Answer: (D)
Compiler error
int main()
{
show();
printf("BANK ");
return 0;
}
void show()
{
printf("CURRENCY ");
}
You must be Logged in to update hint/solution