decimal to binary 26 vice versa in c program pdf

Solutions on MaxInterview for decimal to binary 26 vice versa in c program pdf by the best coders in the world

showing results for - "decimal to binary 26 vice versa in c program pdf"
Henry
27 Feb 2018
1Select conversion:
2
31. Decimal to binary. 
42. Decimal to octal. 
53. Decimal to hexadecimal. 
64. Exit.
7
8Enter your choice: 1
9Enter a number: 7
10Result = 111
11
12Select conversion:
13
141. Decimal to binary. 
152. Decimal to octal. 
163. Decimal to hexadecimal. 
174. Exit.
18
19Enter your choice: 2
20Enter a number: 25
21Result = 31
22
23Select conversion:
24
251. Decimal to binary. 
262. Decimal to octal. 
273. Decimal to hexadecimal. 
284. Exit.
29
30Enter your choice: 4
31Exiting ...
32