I'm trying to compile this code but my IDE (vmware virtual machine) doesn't recognize the header file conio.h. Does anyone know a way around this? This code reads in the values of three characters from the keyboard and prints the sum.
#include<stdio.h> 
#include<conio.h> 
void main() 
{ 
int a,b,c,d,e; 
clrscr(); 
printf("\n Enter the three numbers:"); 
scanf("%d %d %d",&a,&b,&c); 
d=a+b+c; 
printf("|n The sum is %d", d); 
getch(); 
}
