Help.....!!
Please explain me the output of the following code.I am unable to understand why infinte loop is occuring for i>126.
#include<stdio.h>
int main(void)
{
char i=2;
while(i<=127)
{
printf("%d\n",i);
i+=1;
}
return 0;
}