Accessing class variables in a for loop

In reply to dave_59:

Hi Dave,

I understand that when invoke a macro, it just inserts with whatever that macro was defined.
My question is is there any way where in if a string is passed as an argument to define macro, the quotes are removed and the pre-processor inserts the unquoted string.
So if I say:
`define unquoted_string(ARG) MY NAME IS ARG // __ Something like this .

and call:
`unquoted_string(“ALICE”)

the macro should be expanded by the pre-processor to: MY NAME IS ALICE // __ Remember that ALICE Argument to the macro had quotes, now the output is printed to be unquoted.

Thanks for the -E switch.

-Sailaja.