Get the next character from stdin: how to use getchar : Console Read Char « Console « C / ANSI-C






Get the next character from stdin: how to use getchar


#include <stdio.h>

int main ()
{
  char c;
  
  puts ("Enter text. '.' to exit:");
  do {
    c=getchar();
    putchar (c);
  } while (c != '.');
  return 0;
}


           
       








Related examples in the same category

1.Read a char from console: getchar()
2.Read a char and check it value
3.Use getchar() in for loop
4.pause until a key is pressed
5.Get char from console and display it: getche()
6.Get char from the console