[ Web Proxy ]
URL:
Viewing: https://ru.cppreference.com/cpp/keywords/and [Back]  [Original]

C++: and cppreference.com
cppreference.com

C++: and

cppreference.com

  • : &&

#include <iostream>

int n;
int main()
{
   if(n > 0 and n < 5)
   {
       std::cout << "n is small and positive\n";
   }
}

Web Proxy Viewer  |  New URL  |  Original Page