Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define FUN(i, j) i##j int main() { int va1=10; int va12=20; printf("%d\n", FUN(va1, 2)); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!