Predict the Output

#define tech(a,b) a##b##a
int main()
{
if(printf("%d",tech(4,0)))
{
}
return 0;
}

Output:
404

Read about Macro

Related Posts