#include<iostream.h>
void main()
{
cout<<"Love";
}
The question is how can we change the output of this program into "I Love You" by without making any change in main().
|
2
|
|||||||||||||||
|
|
|
why dosen't to have contol to oprate the new value of the new function.......thn it controled by the input .......if u can understand to explain to me... |
||
|
|
|
|
Assuming this was a class assignment, I would bet the idea was that you could rewrite iostream.h, since C++ doesn't treat it as special (for certain definitions of "special"). |
||||
|
|
|
Not as elegant as litb's, but it works
Of course, you don't need to use a |
||||||
|
|
|
The lesson is that C++ can execute code before and after main() through static constructors/destructors, eg. the code posted by litb. |
||
|
|
|
|
Not as elegant as litb's, but an alternative:
|
||||||
|
|
|
|
||||
|
|
|
It seems you're saying you don't want code changes, but you want different behaviour. Since the behavior you want cannot be achieved by magic you have two real solutions:
Me? I used to break copy protection so I'd go the latter route. Build the program from the source you have but then edit the binary so that it behaves how you prefer. Given the roundabout nature of this solution though I'd strongly wonder at your motivation. It seems like such a pointless question to ask unless you don't understand compilers, or have sinister motivation... |
||
|
|
|
|
Like this:
This way, you haven't changed anything in the |
||||||
|
|
|
Ok, fixing your main function and iostream.h ... This is the way
I figured i should explain why that works. The code defines a structure that has a constructor and a destructor. The constructor is run when you create an object of the struct and the destructor is run when that object is destroyed. Now, at the end of a struct definition, you can put declarators that will have the type So, what we did above is creating an object called That pattern actually is very well known by the term |
||||||||||||||
|
|
|
I guess you could write an operator<< that added "I" before and "You" after the current output. |
||||
|
|
|
That code has no using std but anyway it would require writing your own wrapper around cout and removing the using std if there was and replace with using mystd where the wrapper is defined. |
||
|
|
|
|
Shouldn't your main function return an int? You're either going to need to change the method, or write another program that this one pipes into, but that's the most round about way to change a simple string... |
||
|
|
|
Can you be a little more precise? You want the output of that piece of code to be "I love you" instead of "Love"? Edit: I don't think you can't without changing at least one line of code in main(). You can either change from cout<<"Love" to cout<<"I love you" or just add a function that outputs that specific line. |
|||
|
|
You need to change the main, by either calling another function or by changing the text. Since |
||
|
|