2.
What will be the output of the following C code?
#include <stdio.h>
void m(int k)
{
    printf("hi");
}
void m(double k)
{
    printf("hello");
}
void main()
{
    m(3);
}

4.
What will be the output of the following C code?
#include <stdio.h>
void f();
int main()
{
    #define max 10
    f();
    return 0;
}
void f()
{
    printf("%d\n", max * 10);
}

5.
Which of the following is true for the static variable?

Read More Section(Function)

Each Section contains maximum 100 MCQs question on Function. To get more questions visit other sections.