Horje
parcourir char c Code Example
parcourir char c
char chaine[] = "Hello!";
int iterateur=0;
while(chaine[iterateur] != '\0') { //En C, le caractère \0 correspond à la fin de ta chaine
 //Tu mets ton code ici
 iterateur++;
}




C

Related
how make a character in c scanf Code Example how make a character in c scanf Code Example
c iterate string Code Example c iterate string Code Example
const godot gdscript Code Example const godot gdscript Code Example
count number of vowels in a string in c Code Example count number of vowels in a string in c Code Example
save numpy array to text file Code Example save numpy array to text file Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16