I've just downloaded turboc. I wrote a simple program in that but i get 4 errors which are listed below:
1- Unable to open include file 'stdio.h'
2- Unable to open include file 'conio.h'
3- function printf should have a prototype.
4- function getch should have a prototype.
When I tried to get help by F2 it shows that
The compiler could not find the named file.
You do not have files set in config.sys on your root directory.
Verify that named file exists.
Set files=20 in config.sys
I tried to search for config.sys directory but failed. How to fix this problem.
My program is as below;
#include<stdio.h> #include<conio.h> void main() { printf("HelloWorld!"); getch(); }
MOD EDIT: When posting code...USE CODE TAGS!!!

This post has been edited by JackOfAllTrades: 22 December 2010 - 08:49 AM