S
sumedh.....
#define f(a,b) a+b
#define g(a,b) a*b
main()
{
int m;
m=2*f(3,g(4,5));
printf("\n m is %d",m);
system("pause");
}
what shud be the o/p of prog and why?
#define g(a,b) a*b
main()
{
int m;
m=2*f(3,g(4,5));
printf("\n m is %d",m);
system("pause");
}
what shud be the o/p of prog and why?