1.

Which of the following is an external variable in the following C code?
 #include <stdio.h>
int function(int p)
{
int q;
return q;
}
int main()
{
int r;
function(r);
}
int s;

A. p
B. q
C. r
D. s
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs