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; […]
Question 51 What is the output of the following ‘C’ program ? (Assuming little – endian representation of multi-byte data in which Least Significant Byte (LSB) […]
Question 13 Consider the following declaration int a, *b=&a, **c=&b; a=4; **c=5; If the statement b=(int *)**c is appended to the above program fragment then A […]
Question 52 Consider the following function definition. void greet (int n) { if (n>0) { printf(“hello”); greet(n-1); } printf(“world”); } If you run greet(n) for some […]