>>297
First, no one will be extending GCC without obvious benefit,
its likely they would instead run a script on C/C++ file for one specific case before inventing 'reader macros'.
I guess the approach to do this would be something like:
JSON object1 = parseJson( { "complex": 5, "object": [6, 7, 8] })
char *string = "this is a regular string";
sprintf(newstring,stringify([
1, 2, 3, object1, [[%s], 10]
]),string)
JSON object2 = parseJson(newstring)