1.

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

Answer»


Discussion

No Comment Found