Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <stdio.h> #define S_CONCAT(x, y) x##y int main() { printf("%d", S_CONCAT(50, 99)); return 0; } /* run: 5099 */