Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
problem_binary_4
//Microsoft (R) C/C++ Optimizing Compiler Version 19.00.23506 for x#include<iostream> //code compile on visual studio 2013 void func(int number) { int a; if (number <= 1) { cout << number; return; } a = number % 2; func(number >> 1); cout << a; }
run
|
edit
|
history
|
help
0
visual-wtf
Thing v.2
복소수 클래스 생성하기
"Mostly invalid states" and unordered_set
Eight Queen
What is the fastest/most efficient way to find the highest set bit (msb) in an integer in C?
Hangman
Use std::is_base_of to subset STL container contents.
CommandQueue
std::is_same doesn't check for calling convention