#include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { unsigned char a = 254; unsigned char b = a + 6; printf("b=%d ",b); return 0; }
结果:b=4