out of curiosity: Why do you want to do this? If you have to type FOO(1,2); every single time you want to spell out the variable name, how is that better than writing double var12iable; in the first place?
I'm learning instruction level parallelism, so I'll have a bunch of double var00iable; double var01iable; double var10iable;...It it just to have a template so that I spend less time coding.
##.FOO(1,2);every single time you want to spell out the variable name, how is that better than writingdouble var12iable;in the first place?double var00iable; double var01iable; double var10iable;...It it just to have a template so that I spend less time coding.##operator is commonly called the "token pasting operator".