Name: Anonymous 2014-07-22 13:29
Can be yours or not, I just want to see something good.
/* 2 bit adder in C
if any of the input parameters is bigger than 2 bits, the behavior is undefined
if the result of addition is more than 2 bits, the behavior is undefined.
int add(int a, int b) {
return a + b;
}