CS计算机代考程序代写 // COMP1521 21T2 … final exam, question 1

// COMP1521 21T2 … final exam, question 1

#include
#include
#include
#include

#define BITS 8

void
and (bool x[BITS], bool y[BITS], bool result[BITS])
{
// TODO
}

void
or (bool x[BITS], bool y[BITS], bool result[BITS])
{
// TODO
}

void
xor (bool x[BITS], bool y[BITS], bool result[BITS])
{
// TODO
}

void
not (bool x[BITS], bool result[BITS])
{
// TODO
}