SHOW:
|
|
- or go back to the newest paste.
1 | /* | |
2 | ** ex00.c for ex00.c in /home/ahmed_i/rendu/Piscine_C_J03 | |
3 | ** | |
4 | ** Made by Ahmed Imane | |
5 | ** Login <[email protected]> | |
6 | ** | |
7 | ** Started on Wed Oct 1 10:32:22 2014 Ahmed Imane | |
8 | ** Last update Thu Oct 2 22:43:05 2014 Ahmed Imane | |
9 | */ | |
10 | ||
11 | void my_aff_alpha(void) | |
12 | { | |
13 | char letter; | |
14 | ||
15 | letter = 'a'; | |
16 | while (letter <= 'z') | |
17 | { | |
18 | my_putchar(letter); | |
19 | letter++; | |
20 | } | |
21 | } | |
22 | ||
23 | /* | |
24 | ** my_aff_alpha.c for J03_my_aff_alpha in /home/viller_m/rendu/Piscine_C_J03 | |
25 | ** | |
26 | ** Made by mickael villers | |
27 | ** Login <[email protected]> | |
28 | ** | |
29 | ** Started on Wed Oct 1 09:43:31 2014 mickael villers | |
30 | ** Last update Thu Oct 2 09:36:32 2014 mickael villers | |
31 | */ | |
32 | ||
33 | int my_aff_alpha() | |
34 | { | |
35 | char c; | |
36 | ||
37 | c = 'a'; | |
38 | while (c <= 'z') | |
39 | { | |
40 | my_putchar(c); | |
41 | c = c + 1; | |
42 | } | |
43 | return (0); | |
44 | } |