can anyone please answer me
why the output of following code is -1?
why the output of following code is -1?
Code:
int main()
{
signed char ch=255;
printf("%d",ch);
return 0;
}
Comment