Код: Выделить всё
#include
using namespace std;
int main(){
char a = 129;
printf("%d", a);
}
Я хочу знать, как 129 меняется на -127.
Подробнее здесь: https://stackoverflow.com/questions/751 ... 128-output
Код: Выделить всё
#include
using namespace std;
int main(){
char a = 129;
printf("%d", a);
}