README.md change c compiler text

* in README.md change 'c99' compiler to 'cc' compiler

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
This commit is contained in:
Daniel Santos 2022-03-18 20:55:41 +00:00
parent 32fbc9c08c
commit 3020dad2ff
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ if you want the units place of this numerical system to be on the right side, us
Now, to create the executable to translate a number for these two numerical system, join all of this together and compile using this:
```
$ c99 -DFROM_NUMERICALS=\"0123456789abcdef\" -DFROM_FIRST_NUMBER_VOID -DFROM_INFINITE_BASE -DFROM_UNITS_ON_THE_END -DTO_NUMERICALS=\"123\" -DTO_UNITS_ON_THE_END numericx.c -o hex-to-ternary
$ cc -DFROM_NUMERICALS=\"0123456789abcdef\" -DFROM_FIRST_NUMBER_VOID -DFROM_INFINITE_BASE -DFROM_UNITS_ON_THE_END -DTO_NUMERICALS=\"123\" -DTO_UNITS_ON_THE_END numericx.c -o hex-to-ternary
```
This creates the `hex-to-ternary` executable with can be used to convert numbers from hexadecimal to ternary!