InterviewSolution
Saved Bookmarks
| 1. |
Difference between get()and getchar () function |
| Answer» \tgetc vs getchar getc is a C function to read a character from an input stream such as a file stream or standard input.getchar is a C function to read a character only from the standard input stream(stdin) which is the keyboard.\xa0Syntaxgetc syntax is similar to int getc(File *stream).getchar syntax is similar to int getchar(void);\t | |