Can we use clrscr in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the handle class?
What is difference between malloc()/free() and new/delete?
Explain the use of this pointer?
Why do we need pointers?
What is a loop? What are different types of loops in c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Explain the static member function.
Describe the syntax of single inheritance in C++?
Can circle be called an ellipse?
What does floor mean in c++?
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 purpose of ios::basefield in the following statement?