49

#define shark(a,e,i,o,u,s,r) u##r##i##e
#define srini shark(z,n,i,t,m,k,a)
int srini(int a)
{
printf("%d",a);
return 0;
}
int main()
{
char a=56;
srini(a+32);
}

Output:


Compilation Error

Logic:


we can't define two main functions. but now you may ask where the another main function. srini function is equal to main function. How?
to know click here

Related Posts