Advertisement
tresonance

ft_print_alphabet.c

Feb 14th, 2016
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. void ft_putchar (char c);
  2.  
  3. void ft_print_alphabet (void)
  4. {
  5.     char i;
  6.  
  7.     i = 'a';
  8.     while (i <= 'z')
  9.     {
  10.         ft_putchar (i++);  
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement