What is the output of C Program with functions.?

void show();

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

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

Posted on by