码迷,mamicode.com
首页 > 其他好文 > 详细

2.62 判断机器是否进行算数右移

时间:2020-05-10 21:22:07      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:sig   机器   csapp   shift   unsigned   result   返回   exp   main   

//csapp 2.62

#include <stdio.h>                                                                                                                                                                 
//算数右移返回1,否则返回0
int int_shifts_are_arithmetic() 
{
    //return !~(-1>>1);
    unsigned int w = sizeof(int)<<3;
    return !~(1<<(w-1)>>(w-1));
}

int main(void)
{
    printf("expect:1, result:%d\r\n", int_shifts_are_arithmetic());
}

2.62 判断机器是否进行算数右移

标签:sig   机器   csapp   shift   unsigned   result   返回   exp   main   

原文地址:https://www.cnblogs.com/LonelyTraveler/p/12864659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!