October 4, 2023

Programming-for-Output-Problems

Question 14 What will be the output of the following program? Assume that you are running this program in little-endian processor. A 1 B 320 C […]
October 6, 2023

Programming-for-Output-Problems

Question 2 Consider the following C function. void convert (int n) { if (n < 0) printf ("%d", n); else { convert (n/2); printf ("%d", n%2); […]
October 6, 2023

Programming-for-Output-Problems

Question 1 Consider the following C program: #include <stdio.h> int main ()  { float sum = 0.0, j = 1.0, i = 2.0; while (i/j > […]
error: Alert: Content selection is disabled!!