Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 23, 2022 21: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/8dc6471d92a8e8d1bc0d69913144bf8b to your computer and use it in GitHub Desktop.
Save parzibyte/8dc6471d92a8e8d1bc0d69913144bf8b to your computer and use it in GitHub Desktop.
void enmascaraCadena(char *cadena, int longitud, char mascara)
{
int i = 0;
for (i = 0; i < longitud; i++)
{
printf("%c", mascara);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment