M Mr. Dubey π Coach β 104.48K Points π Principles of Programming Languages Q. Which is the longest scope in the following code? #include <stdio.h> int x; int main() { int y; fun(); return 0; } void fun() { int z; } (A) x (B) y (C) z (D) both a and b ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) x