#include #include int stringLength (char *text) { int count = 0; while (*text != \'\\0\') { count++; text++; } ret