Let's suppose that we have defined following macros:
Code:
#define AAA 'a'
#define BBB 8
Is it possible somehow to define a macro CCC which will be the string of AAA duplicated BBB times?

Code:
#define CCC "aaaaaaaa"
I'm loooking the equivalent to above mentioned CCC macro definition, which
will be changed automatically whenever AAA or BBB is changed.
CCC should be constructed from AAA and BBB in compile-time.

Thank You.