Let's suppose that we have defined following macros:
Is it possible somehow to define a macro CCC which will be the string of AAA duplicated BBB times?Code:#define AAA 'a'
#define BBB 8
I'm loooking the equivalent to above mentioned CCC macro definition, whichCode:#define CCC "aaaaaaaa"
will be changed automatically whenever AAA or BBB is changed.
CCC should be constructed from AAA and BBB in compile-time.
Thank You.

