What is the output of C Program with functions.?
void show();

int main()
{
show();
printf("INDIA");
return 0;
}

void show()
{
printf("USA");
}

Posted on by