If all variables have been defined and declared in the following program, all the variables which can be used in function fun() are __.void fun(int x){static int y;……return;}int z;void main( ){int a,b;fun(a);……}
A. x,y
B. x,y,z
C. a,b,y,z
D. a,b,x,y,z