Quick actions

cmd+k|ctrl+k

Navigation

Languages

Bit operators / << - left shift / Essential C++

Snippet info

Language

Cpp

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:44:13Z

Updated

2019-03-27T06:44:13Z

#include <iostream>

int main(int argc, char **argv) {
    int a = 2147483647; // 0111 1111 1111 1111 1111 1111 1111 1111
    int b = a << 1;     // 1111 1111 1111 1111 1111 1111 1111 1110
    
    std::cout << "a = " << a << ", b = " << b << std::endl;
}
INFO