I’m fairly new to the C preprocessor. Is it possible to change the case of an argument provided to a function-like #define? For example, I want to write test(size) and then involve “Size” in the resulting replacement.
I’m fairly new to the C preprocessor. Is it possible to change the case
Share
No. The preprocessor can combine identifiers to form new ones, but it cannot modify an identifier.