易百教程

43、以下代码的输出是什么?

#include <stdio.h>
int main()
{
    int x = -30;
    x = x << 1;
    printf("%d\n", x);
}

输出结果:未定义的行为。