Can a function take variable length arguments, if yes, how?
No Answer is Posted For this Question
Be the First to Post Answer
Why seem interrupt handlers as member functions to be impossible?
Explain calling an object's member function(declared virtual)from its constructor?
Profiler in projects?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
What is stl containers in c++?
Explain the use of vtable.
What is difference between rand () and srand ()?
What is c++ and its features?
What are static and dynamic type checking?
What is a literal in c++?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.