Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exercice 1
Il faut écrire la fonction strlength
qui renvoie la taille d'une chaine de caractère, comme strlen
(sans utiliser strlen
).
strlength
1
2
3
4
5
6
size_t strlength(char chaine[]) {
// Ecrire le code de la fonction strlength
// la fonction renvoie la taille de la chaine 'chaine'
return 0;
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content