// Test the utility routines in util.c #include "utils.h" #include int main(){ int x=10; printf( " twice %i is %i \n", x, doubleIt(x) ); printf( " half %i is %i \n", x, halfIt(x) ); }