Question 12 The following statement in ‘C’ int (*f())[ ]; declares A a function returning a pointer to an array of integers. B a function returning […]
Question 26 What is the output of the following JAVA program? public class Good{ Private int m; Public Good(int m){this.m=m;} public Boolean equals(Good n){return n.m=m;} public […]