for (i <= 5 && i >= -1;++i; i > 0) {
printf("%d
", i);
}



for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }..

Answer / ajay

can anyone explain how this for loop execute?

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What are the basic data types associated with c?

0 Answers  


Where is volatile variable stored?

0 Answers  


What is time complexity c?

0 Answers  


What is the newline escape sequence?

0 Answers  


How can I prevent another program from modifying part of a file that I am modifying?

0 Answers  






How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.

1 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


Why is c so powerful?

0 Answers  


what are non standard function in c

0 Answers  


HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER

4 Answers  


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above

0 Answers  


Categories