What are the different types of Storage classes?
Answers were Sorted based on User's Feedback
Answer / saroj das ,balsore
storage class is an instruction that give compiler 4
instructions . there are 4 type storage class 1) automatic,
register , static ,external
| Is This Answer Correct ? | 44 Yes | 1 No |
Answer / manjusinga
There are four types of storage classes.
1.Automatic: The scope is within the class that is like
local to its class
2.Extern: The scope of this is used within the class as
well as outside the class.so it is global
3.Regiter: These are mainly used for faster access of data.
4.Static: Once you declare the variable as static it will
remain constant throughout the program
| Is This Answer Correct ? | 48 Yes | 6 No |
Answer / ranjeet garodia
answers given by Manjusinga about static is wrong:
it will be
4.Static: Once you declare the variable as static it exist
till the life of the program.
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / anil
internal static is a storage that is local to the program
and is allocated prior to execution time.That is at
executing time this storage exists,it is reserved for all
time,whether it is used or not and the values remain same
throughout the calls
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / narendra kumar
ans 2 is correct but only a wrong thing in this is static
means it's scope exits through out the programme.it is same
as the global declaration of the object.
ex. static count=0;
++count
it will give 1
in another function we use ++count than it will give 2 not 1
| Is This Answer Correct ? | 5 Yes | 1 No |
What are the advantage of using register variables?
Where must the declaration of a friend function appear?
What happens when a function throws an exception that was not specified by an exception specification for this function?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Write a struct time where integer m, h, s are its members?
Explain all the C++ concepts using examples.
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
When can you tell that a memory leak will occur?
Evaulate: 22%5 a) 2 b) 4 c) 0
Declare a class vehicle and make it an abstract data type.
What is c++ coding?
What is pointer with example?