MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the storage class of variable I in the code written below? #include< stdio> int main() { int I = 10; printf( %d , i); return 0; } | 
                            
| A. | Automatic storage class | 
| B. | Extern storage class | 
| C. | Static storage class | 
| D. | Register storage class | 
| Answer» B. Extern storage class | |