#include <stdio.h> #define fun(p, q) " p ## q " int main() { printf("%s\n", fun(a, b)); }
p ## q
Previous Question Next Question
Your comments will be displayed only after manual approval.