How many times following loop will be executed.
main()
{
int i = 32766;
while (i<= 32767)
printf("%d\n",i);
i = i+ 1;
}