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