theGerk/CSCI_3150_Propositional_Statements
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
//not taken string getConsoleLine(); //retrieves a line from console and returns it as a string //not taken string getFileLine(ifstream& file); //retrives a line from inputed file stream and returns it as a string //not taken void removeCharFromString(std::string& input, unsigned int position); //remove the character at position given from the string and move the rest of the characters back 1 space to shorten the string.