Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- ** ex00.c for ex00.c in /home/ahmed_i/rendu/Piscine_C_J03
- **
- ** Made by Ahmed Imane
- ** Login <[email protected]>
- **
- ** Started on Wed Oct 1 10:32:22 2014 Ahmed Imane
- ** Last update Thu Oct 2 22:43:05 2014 Ahmed Imane
- */
- void my_aff_alpha(void)
- {
- char letter;
- letter = 'a';
- while (letter <= 'z')
- {
- my_putchar(letter);
- letter++;
- }
- }
- /*
- ** my_aff_alpha.c for J03_my_aff_alpha in /home/viller_m/rendu/Piscine_C_J03
- **
- ** Made by mickael villers
- ** Login <[email protected]>
- **
- ** Started on Wed Oct 1 09:43:31 2014 mickael villers
- ** Last update Thu Oct 2 09:36:32 2014 mickael villers
- */
- int my_aff_alpha()
- {
- char c;
- c = 'a';
- while (c <= 'z')
- {
- my_putchar(c);
- c = c + 1;
- }
- return (0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement