Changing veriable names while it excutes?

can i change a name of a veriable like int one; to int two while the code is running
Why do you want to do that?
Quick answer: No.

Long answer: Yes, but not in C++. C++ is not a "reflexive" language; it can not modify it's own code at run time. There are languages that have the ability to use and modify the code that it runs at run time, but the immense amount of danger that's inherent in that type of ability seems to be excessive.

Also, like yasar said...what would be the point?
closed account (zb0S216C)
Duplicate: http://www.cplusplus.com/forum/beginner/61214/#msg331041

Wazzak
Capital NO. Why not try using Indexing?
Topic archived. No new replies allowed.