recategorized by
8,179 views

9 Answers

Answer:

Related questions

2 votes
2 votes
4 answers
1
jenny101 asked Jun 25, 2016
4,954 views
The following three 'C' language statements is equivalent to which single statement?y=y+1; z=x+y; x=x+1z = x + y + 2;z = (x++) + (++y);z = (x++) + (y++);z = (x++) + (++y)...
6 votes
6 votes
3 answers
2
Sourabh Kumar asked Jun 22, 2016
5,693 views
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); ...
8 votes
8 votes
7 answers
3