[*] A Simple CPP code to parse configuration from a config files , which uses '=' as a delimiter.
-> Any line starting with '#' or empty line is treated as a comment.
-> Advised to use '#' for comments.
-> Note: Comments are restricted to one line at the moment i.e for every new line that you use for writing comment must start with a '#'.
g++ configParser.cpp -o configParser./configParser FileToParse.config-> Successfull parsing returns 0 as exit code.
-> On error it returns non-zero exit code.