Add longueur chaine
This commit is contained in:
parent
6a96eb957c
commit
b406c7a431
2 changed files with 21 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -37,3 +37,4 @@ strlen
|
||||||
adresses-variables
|
adresses-variables
|
||||||
pointeurs
|
pointeurs
|
||||||
sos-crash
|
sos-crash
|
||||||
|
longueur-chaine
|
||||||
|
|
20
programmation-c-cpp/tp4/longueur-chaine.c
Normal file
20
programmation-c-cpp/tp4/longueur-chaine.c
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
/* Longueur chaine de caractère */
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
char chaine[100];
|
||||||
|
char *pointeur = chaine;
|
||||||
|
|
||||||
|
printf("Veullez écrire une chaine de caractères : ");
|
||||||
|
fgets(chaine, 100, stdin);
|
||||||
|
|
||||||
|
while (*pointeur != '\n') {
|
||||||
|
pointeur++;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("La chaine fait %lu caractères de longueur\n", pointeur - chaine);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue