Is it possible to have a macro to have:
CHAR_LIST(chicken)
to expand to:
\'c\', \'h\', \'i\', \'c\', \'k\', \'e\', \'n\'
[Reason I want it: b
Nope, sorry, can't be done. There is no operation to split a string into characters. The closest you could get is through recursive metaprogramming, but that will give you the array as an object, not the actual text representation.