1,222 views
1 votes
1 votes
#include<stdio.h>
#define PRODUCT(x) (x*x)
void main()
{
int i=3,j,k,l;
j=PRODUCT(i+1);
k=PRODUCT(i++);
l=PRODUCT(++i);
printf("%d\n%d\n%d\n%d",i,j,k,l);
}

the answer is

a.7

b.7

c.12

d.49

1 Answer

Related questions

1 votes
1 votes
1 answer
1
go_editor asked Jul 30, 2016
2,480 views
The translator which performs macro calls expansion is calledMacro processorMicro pre-processorMacro pre-processorDynamic linker