Question about Cyclone
I have read on Wikipedia that the Cyclone programming language is a safe dialect of the C programming language so consider the following C code. int strlen(const char *s) { int iter = 0; if (s == NULL) return 0; while (s[iter] != '\0') { iter++; } return iter; } This function assumes that the string being p...