Tuesday 8 February 2011

extern keyword in c


Keyword extern is used for declaring extern variables in c. This modifier is used with all data types like int, float, double, array, pointer, structure, function etc.



Important points about extern keyword:



1. It is default storage class of all global variables as well all functions. For example, Analyze following two c code and its output:



(a)

#include

int i;    //By

No comments:

Post a Comment