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

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

static void show()
{
printf("STATIC");
}

Posted on by