Package/Library: Standard C++ library 2. Logical NOT (!) operator: This operator takes in a boolean value and returns its opposite.c++
Package/Library: Standard C++ library 3. Bitwise NOT (~) operator: This operator takes in a number and returns its bitwise complement.c++
Package/Library: Standard C++ library 4. Address of (&) operator: This operator takes in a variable and returns its memory address.c++
Package/Library: Standard C++ library 5. Dereference (*) operator: This operator takes in a pointer and returns the value stored at the memory location it points to.c++ int a = 10; int* ptr = &a; int value = *ptr; // value will be 10 ``` Package/Library: Standard C++ library Overall, these cpp op1 expressions are part of the standard C++ library.