What is c++ library?
No Answer is Posted For this Question
Be the First to Post Answer
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
What is class invariant in c++?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
How does c++ sort work?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
What are the differences between java and c++?
In the derived class, which data member of the base class are visible?
Differentiate between late binding and early binding.
What is problem with overriding functions?
When to use Multiple Inheritance?