nilesh
public text v1 · immutable#ifndef CONIO_H#define CONIO_H 1#include <stdio.h>#include <stdlib.h>char getch() { system("stty raw"); char c = getchar(); system("stty cooked"); return c;}void clrscr() { printf("\033[2J");}#endif#ifndef CONIO_H#define CONIO_H 1#include <stdio.h>#include <stdlib.h>char getch() { system("stty raw"); char c = getchar(); system("stty cooked"); return c;}void clrscr() { printf("\033[2J");}#endif