Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
2 Commented Posts
0 Endorsements
Ranked #107.55K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for maHvic

[code] #include<iostream> using namespace std; int bin(int num); int main() { cout<<"Enter a binary number "; int num; cin>>num; cout<<endl<<endl; bin(num); cout<<endl<<endl; system("PAUSE"); return 0; } int bin(int num) { int a[25]; int i; i=0; int r; int d; int b; int j; j= 0; cout<<"Binary is : "; while(num>0) …

Member Avatar for AndrisP
0
1K

The End.