#include "stdafx.h"

int _tmain(int argc, _TCHAR* argv[])
{
  unsigned char a = 254;
  unsigned char b = a + 6;
  printf("b=%d\n",b);
  return 0;
}

结果:b=4

相关文章:

  • 2021-10-29
  • 2021-09-04
  • 2022-12-23
  • 2021-05-20
  • 2022-03-04
  • 2021-07-08
  • 2022-12-23
猜你喜欢
  • 2021-12-03
  • 2022-12-23
  • 2021-09-02
  • 2021-11-30
  • 2021-07-18
  • 2021-05-19
  • 2022-12-23
相关资源
相似解决方案