A
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");
}
int main()
{
printf("ROCKET ");
show();
return 0;
}
static void show()
{
printf("STATIC");
}
- Correct Answer - Option(B)
- Views: 16
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.