i dont see how this is possible but....is there a way i can have a literal value in my program....such as the number "1" represent a specific variable?
for example
int sum;
sum = 1 + 3; <--- i want my program to read this as add "3" to the variable which represents the literal "1"....i know this might seem wierd but if this is even possible plz let me know :) thx!
-------------------------------------------------
another example:
read in input
"342" from a file and interpret 4 as a variable instead of treating it as it's normal integer representation?