Usage
- alternative operators: as an alternative for
&&
Example
#include <iostream> int n; int main() { if(n > 0 and n < 5) { std::cout << "n is small and positive\n"; } }
&&
#include <iostream> int n; int main() { if(n > 0 and n < 5) { std::cout << "n is small and positive\n"; } }
Please login to continue.