Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
problem_name_2
#include<iostream> using namespace std; void func(int num); int main(){ int num=66; cout<<"The number is :"<<num<<endl; func(num); } void func(int num){ cout<<"The binary is: "; while(num!=0){ cout<<num%2; num=num/2; } }
run
|
edit
|
history
|
help
0
Throttle Example in C++
ternary test c++14
C++ Standard Template Library
C++ standard
uniq ptr
mine
Array-Based Heap Example Starter Code
C++ does not have reference-to-reference types
Graphs Iteration 2.1 Directed Graphs
(non?)-template template parameters for container stream insertion