C examples for String:String Function
returns a length of the string str:
int strlen(char str[]) { int j = 0; while(str[j] != '\0') ++j; return j; }