Non-decimal radices/Input: Difference between revisions

Line 525:
2^^11110001001000000
->123456</lang>
 
=={{header|MATLAB}} / {{header|Octave}}==
<lang MATLAB>val = sscanf('11 11 11','%d %o %x')</lang>
Output:
<pre>val =
11
9
17</pre>
 
=={{header|OCaml}}==
Anonymous user