Guest User

Untitled

a guest
Oct 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. int str_length_i ( const char str[] )
  2. {
  3. int i = 0;
  4. while (str[i] != NULL)
  5. {
  6.   i++;
  7. }
  8. return i;
  9. }
Add Comment
Please, Sign In to add comment