What are Storage Classes in C ?
Answer Posted / bhagwan singh mer
if we declare any variable its type and storage class is
also be declare.storage class tells us that
1.where the variable is stored.
2.what is its initial value.
3.what is the scope of the variable.
4.and last is what is the life of the variable.
THERE ARE FOUR TYPES OF STORAGE CLASS IN C-
1.AUTOMATIC STORAGE CLASS
2.REGISTER STORAGE CLASS
3.STATIC STORAGE CLASS
4.EXTERNAL STORAGE CLASS
| Is This Answer Correct ? | 14 Yes | 8 No |
Post New Answer View All Answers
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
Which is better pointer or array?
How do you view the path?
How many identifiers are there in c?
Is there any demerits of using pointer?
What is || operator and how does it function in a program?
What is the difference between union and structure in c?
Explain what is the general form of a c program?
What is the use of header files?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Is python a c language?
What is string function in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are the types of type specifiers?
What would be an example of a structure analogous to structure c?