Name: Anonymous 2013-01-16 1:18
You're just using it incorrectly, you dumb kid.
#include <stdio.h>
int main(void)
{
char uranus[2];
int c;
while ((c = getchar()) != EOF)
if (c == '\n') {
ungetc(c, stdin);
gets(uranus);
}
return 0;
}