21 lines
406 B
C
21 lines
406 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
void envers(const char texte[]) {
|
||
|
unsigned position;
|
||
|
for(position = strlen(texte); position > 0 ; position--) {
|
||
|
printf("%c", texte[position-2]);
|
||
|
}
|
||
|
printf("\n");
|
||
|
}
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
if (argc < 2) {
|
||
|
printf("usage : %s <texte>\n", argv[0]);
|
||
|
return EXIT_FAILURE;
|
||
|
}
|
||
|
envers(argv[1]);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|