closed by
391 views

Related questions

0 votes
0 votes
1 answer
1
3 votes
3 votes
1 answer
2
Anvi asked Jul 16, 2016
400 views
consider the following program#define funct(x) x*x+xvoid main() { myprintf("%d",funct(5)*funct(3));}What will be the output of the aboveA)360B)73C) 39D) None of the above...
0 votes
0 votes
0 answers
3
himgta asked Feb 19, 2019
377 views
https://www.sanfoundry.com/c-program-checks-strings-anagrams/what is the meaning of line number 32?
1 votes
1 votes
1 answer
4
Satbir asked Jan 16, 2019
713 views
#define lol(a) a+a*aint main(void) { int a=3;printf("%d",lol(a+2)); return 0;}what is the output ?