Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 31, 2020 01:06
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/56d48aef946d222a3c09699e3d9fc20b to your computer and use it in GitHub Desktop.
Save parzibyte/56d48aef946d222a3c09699e3d9fc20b to your computer and use it in GitHub Desktop.
void consumirNuevaLinea(void)
{
int c;
do
{
c = getchar();
} while (c != EOF && c != '\n');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment