int j =15,i;
for (i=1; 1<5; ++i)
{printf ("%d%d
",j,i);
j = j-3;
}
Answer Posted / 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 |
Post New Answer View All Answers
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What are nested functions in c?
How can I make sure that my program is the only one accessing a file?
What is c language & why it is used?
Does free set pointer to null?
What is the use of extern in c?
How can I determine whether a machines byte order is big-endian or little-endian?
Explain how can you determine the size of an allocated portion of memory?
In C language what is a 'dangling pointer'?
What is wrong with this program statement?
What does nil mean in c?
What is the difference between fread buffer() and fwrite buffer()?
Explain void pointer?
Tell me what are bitwise shift operators?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f