527 views
1 votes
1 votes

Consider the following C program

# include<stdio.h>
# define fun(i, j) i * j
# define gun(q) q * q
int main( )
{
int i = 4;
int j = 3;
printf(“%d”, fun(fun(i + 2, j), gun(j + 2)));
return 0;
}


The output of the program is _______

2 Answers

Related questions

2 votes
2 votes
1 answer
2
3 votes
3 votes
2 answers
3
sunil sarode asked Nov 4, 2017
2,203 views
Choose the False statements:(a) The scope of a macro definition need not be the entire program(b) The scope of a macro definition extends from the point of definition to ...
0 votes
0 votes
1 answer
4
Hira Thakur asked Aug 18, 2017
1,733 views
how enum has differed from marco???what is advantage/disadvantage of both???