35

#define s(b) b*2-1
int main()
{
printf("%d",s(3)*2);
return 0;
}

Output:


4

Related Posts