Advertisement
Vasilena

PracticeDayFiveExercise1

Jul 9th, 2021
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. void StrLength(char Str[]){
  5.     int i;
  6.     for(i = 0; Str[i] != '\0'; i++)
  7.     {
  8.     }
  9.     printf("%d", i);
  10. }
  11.  
  12. int main()
  13. {
  14.     char Str[] = "kuche";
  15.     StrLength(Str);
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement