1.

#include <stdio.h>extern int var;int main(){var = 10;printf("%d ", var);return 0;}(A) Compiler Error: var is not defined(B) 20(C) 0

Answer»


Discussion

No Comment Found