Top

Discussion

Which of the following are an external variable?

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

 

  • A.a
  • B.b
  • C.c
  • D.d

Answer: D

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment