Skip to content

Commit

Permalink
README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Meeraja-K authored Feb 3, 2024
1 parent db753d3 commit adf8aeb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Spell-Checker

This C program implements a spell-checking application that reads words, meanings, and grammars from a CSV file, builds a balanced binary search tree (BST) with case-insensitive insertion, allows the user to check the spelling of a sentence, and updates the CSV file with any new words added during the spell-checking process.
This C program implements a spell-checking application that reads words, meanings, and grammar from a CSV file, builds a balanced binary search tree (BST) with case-insensitive insertion, allows the user to check the spelling of a sentence, and updates the CSV file with any new words added during the spell-checking process.

Data Structures:

Expand Down Expand Up @@ -29,6 +29,7 @@ Functions:


Commands:
'gcc -c spell_checker.c'
'gcc -o spell_checker spell_checker.o'
'spell_checker'

gcc -c spell_checker.c
gcc -o spell_checker spell_checker.o
spell_checker

0 comments on commit adf8aeb

Please sign in to comment.