/* ----------------- Example code from MISRA C:2012 begin ----------------- */ #define A( x ) #x /* Compliant */ #define B( x, y ) x ## y /* Compliant */ #define C( x, y ) #x ## y /* Non-compliant */ /* ------------------ Example code from MISRA C:2012 end ------------------ */