Top

Functions

91.

What is the default return type if it is not specified in function definition?

Answer: B

No answer description available for this question.

Enter details here

92.

Property of external variable to be accessed by any source file is called by C90 standard as:

Answer: A

No answer description available for this question.

Enter details here

93.

What is the output of this C code?

void main()
    {
        m();
    }
    void m()
    {
        printf("hi");
        m();
    }

 

Answer: C

No answer description available for this question.

Enter details here

94.

Which part of the program address space is p stored in the code given below?

int *p = NULL;
    int main()
    {
        int i = 0;
        p = &i;
        return 0;
    }

 

Answer: B

No answer description available for this question.

Enter details here

95.

What is the output of this C code?

int x;
    void main()
    {
        printf("%d", x);
    }

 

Answer:

Enter details here

96.

Which of the following are an external variable?

int func (int a)
    {
        int b;
        return b;
    }
    int main()
    {
        int c;
        func (c);
    }
    int d;

 

Answer: D

No answer description available for this question.

Enter details here

97.

What is the output of this C code?

void main()
    {
        m();
        void m()
        {
            printf("hi");
        }
    }

 

Answer: B

No answer description available for this question.

Enter details here

98.

What is the output of this C code?

void foo();
int main()
{
void foo(int);
foo();
return 0;
}
void foo()
{
printf("2 ");
}

 

Answer: B

No answer description available for this question.

Enter details here

Answer: C

No answer description available for this question.

Enter details here

Answer: C

No answer description available for this question.

Enter details here

Loading…
Tags: Functions Questions and Answers || Functions MCQ Questions and Answers || Functions GK Questions and Answers || Functions GK MCQ Questions || Functions Multiple Choice Questions and Answers || Functions GK || GK on Functions || C Programming Questions and Answers || C Programming MCQ Questions and Answers || C Programming GK Questions and Answers || GK on C Programming