fork(1) download
  1. #include <iostream> /* C++ iostream C++98/11 */
  2. #include <string> /* C++ strings C++98/11 */
  3. #include <boost/regex.hpp> /* RegEx Boost */
  4.  
  5. int main() {
  6.  
  7. int a=10; //1010
  8. int b =4; //1100
  9. std::cout <<(a&b);
  10. }
  11.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty