Contact: aviboots(AT)netvision.net.il
41,397 questions
53,943 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 */