write a program to find 2 power of a 5digit number with out
using big int and exponent ?
No Answer is Posted For this Question
Be the First to Post Answer
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
When you define a integer it gets stored in which data structure?(Stack or a heap)
why c++ is called OOPS? waht is inherutance? what is compiler?
What is the difference between C++ and java?
how to tackle technical questions
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
What do you mean by variable?
What is abstrac class?where is it use?
Get me a number puzzle game-program
why c++ is a highlevel language
3 Answers Satyam, Tech Mahindra,
When not to use object oriented programming?