Ask Question
20 November, 22:37

Which of the following is the Boolean logical operator for AND in C#?

+1
Answers (1)
  1. 21 November, 01:14
    0
    char * pch = 0; ... (pch) && (*pch = 'a');

    heres an example

    / / expre_Logical_AND_Operator. cpp / / compile with: / EHsc / / Demonstrate logical AND #include using namespace std; int main () { int a = 5, b = 10, c = 15; cout << boolalpha << "The true expression " << "a < b && b < c yields " << (a < b && b < c) << endl << "The false expression " < b && b < c yields " < b && b < c) << endl;
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which of the following is the Boolean logical operator for AND in C#? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers