Question 28 Given the programming constructs (i) assignment (ii) for loops where the loop parameter cannot be changed within the loop (iii) if-then-else (iv) forward go […]
Question 32 The most appropriate matching for the following pairs X: m=malloc(5); m= NULL; 1: using dangling pointers Y: free(n); n->value=5; 2: using uninitialized pointers Z: […]
Question 33 Aliasing in the context of programming languages refers to A multiple variables having the same memory location B multiple variables having the same value […]