Computer Science, asked by suhail98211, 2 months ago

difference between getchar() and get() in c++

Answers

Answered by mahek77777
2

getchar() is a standard function that gets a character from the stdin. getch() is non-standard. It gets a character from the keyboard (which may be different from stdin) and does not echo it.

Similar questions