1,023 views

1 Answer

0 votes
0 votes
answer should be (d)

check for n=4

two_logn =4

we will not get a[j] as 0, each time it gives non zero value which is 1 so if condition is false hence printf will not execute

Related questions

0 votes
0 votes
2 answers
1
rohitkaushal1 asked Sep 22, 2022
502 views
What will be the output printed for find(4)? void find(int x) { static int i = 10, y = 0; y = y + i; for(i; i>0; i = i - 10) { if(x! = 0) find(x – 1); else printf(“%d...
1 votes
1 votes
1 answer
2
Payal Rastogi asked Nov 1, 2016
397 views
How to solve this ??
4 votes
4 votes
1 answer
4