I'm trying to create a function which should return true or false if a given number complies with the given conditions. Anyway, it doesn't seem to work. Here's the code:
bool conditions(int i) {
return (i != '\n' & i != ' ' & i != '\t' & i != EOF) ? true : false;
}
Any help will be really appreciated!