Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 15, 2022 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9b664f1fea0bc70e341a3603c0d077a4 to your computer and use it in GitHub Desktop.
Save parzibyte/9b664f1fea0bc70e341a3603c0d077a4 to your computer and use it in GitHub Desktop.
indice = 0;
while (cadena[indice] != '\0')
{
char actual = cadena[indice];
printf("Tenemos el caracter '%c'\n", actual);
indice++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment