Friday 19 June 2009

How can you say typedef is also a storage class?



If we will
write following C code



#include

int main(){

typedef static int integer;

integer p=25;

printf(“%d”,p);

return 0;

}



Output: Compiler
error-Too many storage class


It is not necessary that each primary data type support all five group of
quantifier.

No comments:

Post a Comment