retagged by
472 views

2 Answers

0 votes
0 votes
​​​​​​c) a* + b*

as L2 will not contain a* and b*

Related questions

847
views
1 answers
0 votes
_Harshit asked Mar 18, 2023
847 views
287
views
1 answers
2 votes
Khushboo Solanki asked May 11
287 views
Consider the following function:int arc(int i, int j){if(i<2) return j+2;else if(j<2) return arc(i-1, 1);else return arc(i-1, arc(i, j-2));}The value returned by arc(2, 6) is _________
147
views
1 answers
1 votes
Pradeep kori 73 asked Apr 11
147 views
Consider the following program: #include <stdio.h> int main(){ int a=2, i; static int b=a++; for(i=0;i<a+b;i++) printf("GATE Wallah"); return 0; ... ) GATE Wallah is printed 4 times.(c) GATE Wallah is printed 5 times.(d) Compilation Error.
659
views
2 answers
2 votes
gagan55 asked Jul 15, 2023
659 views
I am getting (b) 5 ?? Can you please explain the_ int i_ in for loop and display()[MCQ] 44. Consider the following function: void display() { static int i; if(i<=printf(" ... The number of times printf() executed is- (a) 6 (b) 5 (c) 7 (d) 9