首页
编程
java
php
前端
首页
编程
java
php
前端
t=t^00是什么意思啊
请读程序片段
unsigned t=129;
t=t^00;
printf("%d,%o\n",t,t);
以上程序片段的输出结果是
^是异或运算符,题中代码片段输出结果为129,201
点击展开全文