What are Storage Classes in C ?
Answer Posted / k.anil kumar
AUTO IS A DEFAULT SPECIFIER.THERE IS NO NECESSARY TO
MENTION IT.STATIC FOR LOCAL ANG GLOBAL IS DIFFERENT.STATIC
LOCAL REMAINS KNOWN ONLY TO THE BLOCK WN WHICH IT IS
DECLARED.STATIC GLOBAL IS KNOWN ONLY TO THE FILE.IT IS NOT
SUBJECTED TO ANY SIDE EFFECTS.EXTERN IS JUST A DECLARATION
BUT NOT DEFINITION.FOR INTEGERS AND CHARACTERS , THIS
TYPICALLY MEANS IN THE REGISTER OF THE CPU RATHER THAN IN
MEMORY,WHERE NORMAL VARIABLES ARE STORED.
| Is This Answer Correct ? | 27 Yes | 68 No |
Post New Answer View All Answers
Write a program to find the biggest number of three numbers in c?
Which of these functions is safer to use : fgets(), gets()? Why?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
what is recursion in C
What is array of pointers to string?
What are the complete rules for header file searching?
Explain 'far' and 'near' pointers in c.
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is selection sort in c?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is indirection? How many levels of pointers can you have?
What are the properties of union in c?
What are linked lists in c?
What is action and transformation in spark?