edited by
1,013 views

1 Answer

Best answer
1 votes
1 votes

since , the given function declaration  is macro definition.you can substitute the expression into call function and evaluate the expression according to associativity rule u will get like this -> x=36+5*5+5*3*3+3 which is 109

selected by

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
0 answers
2
0 votes
0 votes
0 answers
3
Jyoti Kumari97 asked Nov 25, 2018
590 views
What is the number of collisions while doing insert operation on the hash table? Options are 3456Answer is 4Can anyone tell me how? ​​
0 votes
0 votes
1 answer
4
Akashh raj asked Jul 19, 2018
663 views
#include<stdio.h>#define funct(x) x*x+xint main(){ int x; x=36+funct(5)+funct(3); printf("%d",x); return 0;}