Unformatted Console I/O function
Unformatted Console i/o Function The unformatted console input and output function can deal with a single character and a string of characters. Normally we use the scanf() function for input but when we use the scanf() function we need to do one thing that is pressing the enter key to evaluate the success full input. Its weakness of scanf() Function. Now to read a single character we have a function called getch() and getche(), these functions not need to press the enter key because these functions return the character that most recently typed. The getche() function echoes the characters that you typed to the screen 'e' in getche() is referred for echos. getch() just return the characters that typed without echoing iron screen. getchar() is read a single character from the standard input stream and return the corresponding integer value ( it typically ASCII value of reading character) on success. It returns EOF (End of file) on failure. It is the same as getche() but requi...