Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 15, 2022 00:27
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/b78ac2ae3236d154d383145bf19b26a0 to your computer and use it in GitHub Desktop.
Save parzibyte/b78ac2ae3236d154d383145bf19b26a0 to your computer and use it in GitHub Desktop.
char cadena[] = "Hola mundo";
int indice;
for (indice = 0; indice < strlen(cadena); indice++)
{
char actual = cadena[indice];
printf("Tenemos el caracter '%c'\n", actual);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment