Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void StrLength(char Str[]){
- int i;
- for(i = 0; Str[i] != '\0'; i++)
- {
- }
- printf("%d", i);
- }
- int main()
- {
- char Str[] = "kuche";
- StrLength(Str);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement