Advertisement
Iona555

Untitled

Apr 18th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. /*
  2.  * subprograme.c
  3.  *
  4.  *  Created on: Mar 19, 2015
  5.  *      Author: student
  6.  */
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include "s514.h"
  10.  
  11. unsigned MyStrlen(const char str[])
  12. {
  13.     int lg=0;
  14.     int i=0;
  15.  
  16.     while(str[i]!='\0')
  17.     {
  18.         i++;
  19.         lg++;
  20.     }
  21.     return lg;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement