Question 12 The condition num!=65 cannot be replaced by A num > 65 || num<65 B !(num==65) C num-65 D !(num-65) ProgrammingOperator Question 12 Explanation: Except […]
Question 5 Which of the following statements is TRUE for the function prototype declaration given below? Int *(*P)(char *Q[]); A P is a function that accepts […]
Question 12 Which of the following statements is INCORRECT with respect to pointers declared in the following ‘C’ language code? Void main() Int a[10], *p, *q; […]