Explain storage qualifiers in c++.


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

Post New Answer

More C++ General Interview Questions

Define copy constructor.

0 Answers  


what are the iterator and generic algorithms.

0 Answers  


What is polymorphism & list its types in c++?

0 Answers  


What is data structure in c++?

0 Answers  


What is the basic structure of a c++ program?

0 Answers  






Explain differences between alloc() and free()?

0 Answers  


Can we make any program in c++ without using any header file and what is the shortest program in c++.

0 Answers   MCN Solutions,


How to declare a pointer to an array of integers?

0 Answers  


Describe linked list using C++ with an example.

0 Answers  


Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?

0 Answers   Maxobiz,


What is difference between n and endl in c++?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Categories