Skip to content

Instantly share code, notes, and snippets.

View EVHAND's full-sized avatar
🏠
Working from home

EVHAND

🏠
Working from home
View GitHub Profile
public static void ft_print_alphabet_bis(){
for(char i= 'a'; i<='z' ;i++)
{
Console.Write(i);
}
}
public static void ft_print_alphabet(){
char alph = 'a';
while(alph <= 'z')
{
Console.Write(alph);
alph++;
}
public static void ft_putchar(char c)
{
Console.WriteLine(c);
}