int j =15,i;
for (i=1; 1<5; ++i)
{printf ("%d%d
",j,i);
j = j-3;
}
Answers were Sorted based on User's Feedback
Answer / arun
Infinite Loop....Loop does not end...Because condition 1<5 is always True then the answer like this..,
151
122
93
64
35
06
-37
.
.
.
| Is This Answer Correct ? | 6 Yes | 0 No |
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Does c have an equivalent to pascals with statement?
what are the advantages of a macro over a function?
Can a function argument have default value?
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What does %2f mean in c?
Is there any book to know about Basics of C Language?
What is a file descriptor in c?
WHAT IS HIGH LEVEL LANGUAGE?
What is c basic?
What is the difference between static and global variables?