What will be the output of this program?
#include stdio.h  
#define a( i, j ) printf("%d", j##i )
int main()
{
a(5, 10);
}

Posted on by