25

what is output of the following program ? [with explain]

void main()
{
int i=32767;
printf("%d",++i);
}

Comments