Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following is an external variable in the following C code?
#include < stdio.h >
int func (int a)
{
int b;
return b;
}
int main()
{
int c;
func (c);
}
int d;

Which of the following is an external variable in the following C code?
#include < stdio.h >
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

Join The Discussion