storage class specifiers concept

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abhiram531
    New Member
    • Feb 2013
    • 1

    storage class specifiers concept

    can any body write a program using all storage class specifiers?
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Certainly

    Code:
    extern int elsewhere;
    
    static int here;
    
    int main()
    {
    	static int hiddenHere;
    	register int probablyIgnored;
    	int implicitAuto;
    
    	return 0;
    }
    But I think may be you should ask a more detailed question.

    Comment

    • weaknessforcats
      Recognized Expert Expert
      • Mar 2007
      • 9214

      #3
      What leads you to believe this isn't possible?

      Comment

      Working...