What is iterator c++?
No Answer is Posted For this Question
Be the First to Post Answer
What does asterisk mean in c++?
What is a list c++?
Explain public, protected, private in c++?
What does getch() do according to the ANSI C++ standard a) Reads in a character b) Checks the keyboard buffer c) Nothing in particular (Its not defined there)
Why is main function important?
Why is c++ still popular?
Explain the difference between using macro and inline functions?
Do you know what is overriding?
What do you mean by abstraction. Explain your answer?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
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 the use of endl?