Quick actions

cmd+k|ctrl+k

Navigation

Languages

Bit operators / >> - right shift / Essential C++

Snippet info

Language

Cpp

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:44:17Z

Updated

2019-03-27T06:44:17Z

#include <iostream>

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