Question 11 Write the output of the following C program #include <stdio.h> int main (void) { int shifty; shifty = 0570; shifty = shifty >>4; shifty […]
Question 9 How many lines of output does the following C code produce? #include<stdio.h> float i=2.0; float j=1.0; float sum = 0.0; main() { while (i/j […]