Qus : In the following program where is the variable a getting - TopicsExpress



          

Qus : In the following program where is the variable a getting defined and where it is getting declared? #include int main() { extern int a; printf("%d ", a); return 0; } int a=20; A. extern int a is declaration, int a = 20 is the definition B. int a = 20 is declaration, extern int a is the definition C. int a = 20 is definition, a is not defined D. a is declared, a is not defined . . . . . Ans : Option A
Posted on: Sat, 10 Aug 2013 13:52:47 +0000

Trending Topics



Recently Viewed Topics




© 2015