Skip to content

Instantly share code, notes, and snippets.

@Titory0
Last active January 17, 2023 12:26
Show Gist options
  • Save Titory0/bba64b4a6790ac7b47516a2caff8940d to your computer and use it in GitHub Desktop.
Save Titory0/bba64b4a6790ac7b47516a2caff8940d to your computer and use it in GitHub Desktop.
public static int ft_strlen(string word)
{
int len=0;
char a='a';
while(true)
{
try
{
a=word[len];
}
catch
{
return len;
}
len=len+1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment