Created
September 5, 2019 18:03
-
-
Save itsfarseen/59e83263112344094ead4d4b1870db3a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
char buf[1024]; | |
int main() | |
{ | |
printf("Hello: \n"); | |
while (1) | |
{ | |
// If I comment this line, reader works as expected. | |
fgets(buf, 10, stdin); | |
printf("You entered: %s\n", buf); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment