I\'m making a small C program that asks for a key and executes some code in a switch statement.
C
#include #include
clrscr() is never part of any standards.Its a vendor specific functon provided by borland in conio.h(non standard). Try emulate its behavior by calling system("cls") , Include stdlib.h header file.