C Workshop
|
Functions | |
void | InputLoop (void) |
Function that receives character input from the user and prints it. More... | |
char | ReadCharacter () |
Read a character from the user. More... | |
void | PrintUpperCase (char input) |
Print a character to the user in uppercase. More... | |
bool | IsQ (char input) |
Check if a character is a 'Q' or 'q'. More... | |
void InputLoop | ( | ) |
Function that receives character input from the user and prints it.
Function that receives character input from the user and prints it in uppercase.
The function terminates when the input is 'Q' or 'q'
bool IsQ | ( | char | input | ) |
Check if a character is a 'Q' or 'q'.
input | Character to check |
void PrintUpperCase | ( | char | input | ) |
Print a character to the user in uppercase.
input | The character to print |
char ReadCharacter | ( | ) |
Read a character from the user.