nikolas_serafini

Lista 8 - Exercício 7

Aug 11th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.08 KB | None | 0 0
  1. int stringSize(char *s) {
  2.     int i;
  3.     while(*s++ != '\0')
  4.         i++;
  5.     return i;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment