Skip to content

Instantly share code, notes, and snippets.

@Titory0
Created January 16, 2023 12:11
Show Gist options
  • Save Titory0/0fd1fc4824256aa890f8d2a8875f2cf8 to your computer and use it in GitHub Desktop.
Save Titory0/0fd1fc4824256aa890f8d2a8875f2cf8 to your computer and use it in GitHub Desktop.
public static void ft_print_alphabet_bis_bis()
{
string imprimer ="";
char[] alphabet = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
foreach(char lettre in alphabet)
{
imprimer+=lettre;
}
Console.Write(imprimer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment