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