Hello it may be some silly question, but this is bugging me since few days.
I have bellow line of code:
static const char x1 = static_cast<int>(-15);
cout<<x1;
static const char x2= 16;
cout<< "hello "<< x2<<'\n';
The output is None I mean nothing is getting printed in console. But when I did the comparison like if(kill == -15) its evaluated as True. So may I know why I can not see any output in console when I am printing.