Joined
Last Seen
-3 Reputation Points
- 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
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [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) … |
The End.