#include<iostream.h>
void main()
{
cout<<"Love";
}
The question is how can we change the output of this program into
"I Love You" without making any change in main().
The question is how can we change the output of this program into
"I Love You" without making any change in |
|||||||||||||||||
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
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 |
|||||||||||||||||
|
|
|||||||
|
|
Not as elegant as litb's, but it works
Of course, you don't need to use a |
|||||||
|
|
Like this:
This way, you haven't changed anything in the |
|||||||||
|
|
Not as elegant as litb's, but an alternative:
|
|||||||
|
|
We can do it like this too:
Simple and works perfectly ;) |
|||
|
|
|
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. |
|||
|
|
|
I guess you could write an operator<< that added "I" before and "You" after the current output. |
|||||
|
|
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... |
|||||
|
|
The lesson is that C++ can execute code before and after main() through static constructors/destructors, eg. the code posted by litb. |
|||
|
|
Assuming this was a class assignment, I would bet the idea was that you could rewrite |
|||||||
|
|
You need to change the main, by either calling another function or by changing the text. Since |
|||
|
|
|
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. |
||||
|
I'm really surprised that noone suggested #define "Love" "I love you"... :) |
|||||||||
|
|
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... |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.