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:11Z

Updated

2019-03-27T06:44:11Z

#include <iostream>

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