Skip to content

devpatrol/exercise.numbertranscriptor.c

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NUMBER TRANSCRIPTOR EXERCISE WITH C

In this exercise we were supposed to create a program to transcribe a mathematical expression into letters.

HOW TO RUN OUR PROGRAM?

  • GCC should be installed.
  • GCC should be known by as cmd command.

UBUNTU & MAC

  • Ubuntu and Mac use the terminal
  • We will use the Makefile
  • so just run:
    make

WINDOWS

  • Windows use the command prompts
  • We will use the gcc command
    cls && gcc main.c -o main.o && gcc main.o -o app && ./app

TEST

    ./app

    >>> Quelle Expression voulez-vous transcrire?
    >>> 2456
    >>> deux mille quatre cent cinquante et six

@MadeBy


(Fr@nckkk Pertinent)[https://github.com/pertinent23/]