R
Q. 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 > 0.001) { j+=j; sum=sum+(i/j); printf("%fn", sum); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Number of binary trees formed with 5 nodes are
Q. What is the output of the following C program?
Q. In switch statement, each case instance value must be _______?
Q. Which of the following ways are correct to include header file in C program?
Q. Identify wrong C Keywords below.
Q. What is the maximum number of dimensions an array in C may have?
Q. What is the output of C program?
Discusssion
Login to discuss.