Write a program to find the reverse Fibonacci series starting from N.
No Answer is Posted For this Question
Be the First to Post Answer
What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
When should overload new operator on a global basis or a class basis?
What will i and j equal after the code below is executed? Explain your answer.
What is meant by iomanip in c++?
Write any small program that will compile in "C" but not in "C++"?
If dog is a friend of boy and boy is a friend of house, is dog a friend of house?
Explain polymorphism?
What is the difference between static link library and dynamic link library?
What are shallow and deep copy?
What is the use of function pointer?
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;