what is the definition of storage classes?

Answers were Sorted based on User's Feedback



what is the definition of storage classes?..

Answer / shobana

variables in C can have not only data type but also storage
class that provides information about their location and
visibility. The storage class decides the portion of the
program within which the variables are recognized.

Is This Answer Correct ?    38 Yes 7 No

what is the definition of storage classes?..

Answer / nakul sharma

Storage class in C language defines the memory type in which any variable is going to be stored in C program.

Is This Answer Correct ?    5 Yes 8 No

what is the definition of storage classes?..

Answer / venkata mahesh

at the level of the language as a storage class persistence
is defined on ... A program written in C is passed through
a precompilation phase in which the statements related to
persistence are converted into their corresponding storage
system calls.

Is This Answer Correct ?    8 Yes 16 No

Post New Answer

More C Interview Questions

what is a static function

10 Answers   Satyam,


When should a type cast be used?

0 Answers  


please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code

0 Answers   Mind Tree,


what is the difference between definition and declaration? give me some examples.

2 Answers   TCS,


what is data structure

5 Answers   Maveric, TCS,






write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

1 Answers   91mobiles, Amazon, App Guruz, College School Exams Tests, Folio3, Infosys, Omega, Planin, Riphah International University, Subex,


what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


what does ‘Bus Error’ mean?

1 Answers   ABC,


Why is c still so popular?

0 Answers  


write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?

2 Answers   Zensar,


What is the most efficient way to store flag values?

0 Answers  


What is type qualifiers?

0 Answers  


Categories