Divaddition
Due to some circumstances I was sitting around with some time on my hands, so I wrote this little program based on a challenge posted in the code golf section of stack http://pastebin.com/cTQsvaHk #include <stdio.h> static int addCounter; int add(int a, int b) { ++addCounter; return a + b; } int divide(int dividend, int divisor) […]