Top

Discussion

Which variable has the longest scope?

int b;
    int main()
    {
        int c;
        return 0;
    }
    int a;

 

  • A.a
  • B.b
  • C.c
  • D.Both (a) and (b)

Answer: B

No answer description available for this question.
 

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

Post your comment