-
Which of the following is the correct output for the program given below ?
#include <studio.h>
int main()
{
char i = 0;
for (i<=5 && i>= -1; ++i; i>0)
printf ("%d\n",i);
printf ("%\n");
return 0;
}
-
- 1 2 3 ..... 126 127 -128 - 127 .... -2 -1
- Expression syntax error
- No Output
- 0 1 2 3 4 5
Correct Option: A
1 2 3 ..... 126 127 -128 - 127 .... -2 -1