Terminal based notes keeping app with mysql database < needed: "Mysql" >
$ ./notes ==> lists all notes $ ./notes ==> displays note identified by $ ./notes -a|-add ==> adds notes $ ./notes -c|-configure ==> creates database and table $ ./notes -h|-help ==> uses help $ ./notes -t|-truncate
$ gcc notes.c -o notes mysql_config --cflags --libs
DROP USER 'ntuser'@'localhost';
DROP DATABASE notesdb;
ALTER TABLE mynotes auto_increment=;