#include <stdio.h> #define printf(s) puts(s) void test() { printf("%s", "A"); /* 1 */ printf("B"); /* 2 */ puts("C"); /* 3 */ }