Answers for "boolean operations c++"

C
0

binary algebra cpp

unsigned char a=195;
unsigned char b=87;
unsigned char c;
c=a&b;
Posted by: Guest on July-26-2020
0

bool c++

#include<stdio.h>
#include <stdbool.h>
main() { 
    bool value = true;
    (value) ? printf("value is true"): printf("value is false");
}
Posted by: Guest on April-30-2021

Code answers related to "C"

Browse Popular Code Answers by Language