Answers for "C read a character"

C
0

C read a character

int c = getchar(); //to read only one char
if (c != EOF)
  printf("%c\n", c);
Posted by: Guest on April-15-2022

Code answers related to "C"

Browse Popular Code Answers by Language