// If you create an Eclipse project containing this driver code and the // supplied header file "Count7s.h", and complete your implementation of // the specified function in the supplied file "Count7s.c", you can then // test it by modifying the main() function below. // #include #include #include "Count7s.h" int main() { unsigned int testValue = 7713287; unsigned int Response = Count7s( testValue ); printf("Allegedly, there are %d 7s in %d\n", Response, testValue); return 0; }