what is the definition of storage classes?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
How many bytes are occupied by near, far and huge pointers (dos)?
what does ‘#include’ mean?
What are preprocessor directives?
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
What is c value paradox explain?
To what value do nonglobal variables default? 1) auto 2) register 3) static
What is the difference between c and python?
Are bit fields portable?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
What are enumerated types?