Which one is a preferred language C or C++? Why?
No Answer is Posted For this Question
Be the First to Post Answer
How would you represent an error detected during constructor of an object?
What is the function of the keyword ‘volatile’ in C++?
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
How to tokenize a string in c++?
What is the first name of c++?
Explain RAII (Resource Acquisition Is Initialization).
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
What is protected inheritance?
What is the use of "new" operator?
What is a container class? What are the types of container classes?