Answer Posted / mike
Types of storage class variables in C++:
Automatic.
Extern.
static.
Automatic variables are those which are local to a function
and which are created when the function is called and
destroyed when the function is exited. The memory is
allocated and deallocated on the stack as and when the
function is called and exited.
External variables are global variables and are accessible
to all the functions in the program. They exist throughout
the program.Memory is set when they have have been declared
and will remain till the end of the program.
Static variables are like external varibles which will be
declared within a function and will maintain their values
between function calls.They also exist until throughout the
program
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is the difference between #import and #include?
describe private access specifiers?
What happens if a pointer is deleted twice?
How many characters are recognized by ANSI C++?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Can static member variables be private?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h
What is purpose of new operator?
What is the use of volatile variable?
What is overloading unary operator?
Explain selection sorting?
How the keyword struct is different from the keyword class in c++?
In a function declaration what does extern means?
What character terminates all character array strings a) b) . c) END