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
Can a variable be both static and volatile in c?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Is c call by value?
Differentiate between functions getch() and getche().
How many bytes are occupied by near, far and huge pointers (dos)?
In which layer of the network datastructure format change is done
Explain the difference between exit() and _exit() function?
Array is an lvalue or not?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
How can I make it pause before closing the program output window?
Can we access array using pointer in c language?
Why is c faster?
What is strcpy() function?
What is a program?