December 16, 2023

Pointers

Question 2 Consider the following three C functions: [PI] int*g(void) { int x = 10; return(&x); } [P2] int*g(void) { int*px; *px = 10; return px; […]
December 17, 2023

Mathematical-Reasoning

Question 7 The ratio of ages of two persons A and B is 3 : 4 and that of ages of B and C is 4 […]