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 the different types of storage classes in C?

Answer Posted / glibwaresoftsolutions

 Auto: Default storage class for local variables.
 Static: Retains variable value between function calls.
 Extern: Refers to global variables used in other files.
 Register: Suggests storing variables in the CPU register.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the meaning of c in c language?

1072


What is the use of function overloading in C?

1097


When should a type cast be used?

964


What is a char c?

992


What are bitwise shift operators in c programming?

1037


Differentiate between a for loop and a while loop? What are it uses?

1131


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1226


List the difference between a 'copy constructor' and a 'assignment operator' in C?

1032


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

3159


Why is event driven programming or procedural programming, better within specific scenario?

2364


What is difference between scanf and gets?

1167


What are the key features in c programming language?

1004


Explain enumerated types in c language?

990


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

2275


Explain two-dimensional array.

1008