#include #include int main() { //raw input demonstration char c; printf("\nEnter input(No need to hit Enter :))\n"); system("stty raw"); c = getchar(); system("stty cooked"); printf("\nyour value is %c\n", c); return 1; }