...
August 24, 2024

C-Programming

Question 25 Consider the following C program int f1 (int n) { if(n == 0||n == 1) return n; else return (2*f1(n-1)+3*f1(n-2)); } int f2 (int […]
August 27, 2024

C-Programming

Question 40 What is the output when the following segment of ‘c’ code is executed? Void main (){ Float a = 123.456 printf(“%7.2f, %7.3f, %12e, a, […]
August 27, 2024

C-Programming

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) […]
August 28, 2024

Pointers

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 […]