codice:unsigned int strlen (char *stringa) { unsigned int i = 1; while (*stringa != '\0') { i++; stringa++; } return i; }
codice:unsigned int strlen (char *stringa) { unsigned int i = 1; while (*stringa != '\0') { i++; stringa++; } return i; }
Experience is what you get when you don’t get what you want