Recent activity in Programming and DS

30 votes
4 answers
6
1 votes
0 answers
8
Consider an integer upper triangular 2D array arr[–8 to +7][–8 to +7] having base address 1000. If the size of the integer is 4 bytes, the address of the element pres...
2 votes
2 answers
10
​​Consider the following $\mathrm{C}$ function definition.int f (int x, int y){ for (int i=0 ; i<y ; i++ ) { x= x + x + y; } return x; }Which of the following stateme...
0 votes
1 answer
12
0 votes
2 answers
18
1 votes
1 answer
22
int bar(int val){int x=0;while(val 0){x=x+bar(val -1);}return val;}Q: For bar(3) this function is supposed to be stuck in an infinite loop but I do not know how please c...
1 votes
2 answers
24
To see more, click for all the questions in this category.