Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What are Storage Classes in C ?

Answer Posted / shashi sourabh kant

There are four type of storage classes in C. These are used
to store variables. These are Extern, Static, Register and
Auto. Auto is the default class assigned to any variable.
eg. if we define int x=10; then it means auto int x=10
register and static differ in only one grounds that
register is there in the cpu and static in the main memory.
extern is global and can be accessed by any program and
anywhere.

Is This Answer Correct ?    704 Yes 59 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is extern keyword in c?

1189


What is actual argument?

1103


Explain what is meant by high-order and low-order bytes?

1093


What is function pointer c?

1192


Explain about block scope in c?

1149


What are the three constants used in c?

1044


What is the right type to use for boolean values in c? Is there a standard type?

1062


What is sizeof return in c?

1091


What is the c language function prototype?

1143


What is break in c?

1105


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

2210


What is the significance of an algorithm to C programming?

1096


Is linux written in c?

1084


How can you invoke another program from within a C program?

1122


How do we make a global variable accessible across files? Explain the extern keyword?

1940