Is it possible to declare a #define statement like this somehow?
#define #Name# struct->name
I am getting the error “error: macro names must be identifiers” which I know is related to the # symbol. Is there a work around for allowing the # symbol?
No. The name of a macro must be an identifier and
#cannot appear in an identifier.