What is a storage class? Mention the storage classes in c++.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

what are the iterator and generic algorithms.

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


How to write Multithreaded applications using C++?

2 Answers   Honeywell, TCS, Wipro,


What are manipulators in c++ with example?

0 Answers  






Write a program to concatenate two strings.

0 Answers  


Can char be a number c++?

0 Answers  


Can we have "Virtual Constructors"?

10 Answers   TCS,


Which one between if-else and switch is more efficient?

0 Answers  


why the size of an empty class is 1

4 Answers  


What is the use of default constructor?

0 Answers  


What are the benefits of pointers?

0 Answers  


Categories