given the code segment below
void main()
{
cout<<"my no. is";
}
question is how can we get the output hai aravind my no. is
99999999999 without editig the main().
Answers were Sorted based on User's Feedback
Answer / pankaj rathor
#include <iostream>
using namespace std;
class dummy
{
public:
dummy()
{
cout<<"Hai Arvind ";
}
~dummy()
{
cout<<" 99999999999";
}
};
dummy obj;
int main()
{
cout<<"my no. is";
return 0;
}
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sunil chopra
Overload the << operator.
ostream& operator << (ostream& ot, const char* chr)
{
using std::operator<<;
return ot << "Hai Arvind " << chr << " 99999999999";
}
| Is This Answer Correct ? | 9 Yes | 2 No |
What is the advantage of c++ over c?
What is the difference between a pointer and a link in c ++?
What are multiple inheritances (virtual inheritance)?
What does floor mean in c++?
How to declare a function pointer?
Difference between Overloading and Overriding?
35 Answers Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,
What is c++ library?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
What is the difference between strcpy() and strncpy()?
What is microsoft c++ redistributable?
Why seem interrupt handlers as member functions to be impossible?
What is an adjust field format flag?