What is the output of the following code?
#includestdio.h 
#define VAL 4*(2 + 6)
void solve()
{
int a = 20 + VAL;
printf("%d", a);
}
int main()
{
solve();
return 0;
}

Posted on by