What do you mean by storage classes?
Storage Classes are used to describe the features of a variable/function. These features basically include the scope, visibility and life-time which help us to trace the existence of a particular variable during the runtime of a program.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the size of pointer ? Also size of pointer in 64 bit pointer
Give the difference between the type casting and automatic type conversion. Also tell a suitable C++ code to illustrate both.
What are the advantages of using const reference arguments in a function?
What is the use of object in c++?
Does c++ have string data type?
Write a program which uses Command Line Arguments
Define 'std'.
What are the extraction and insertion operators in c++? Explain with examples.
What is private public protected in c++?
write a program that takes 5 digit no and calculate 2 power that no and print it.
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
What are the uses of pointers?