Unexpected error comes out when I tried to run this code below. Can anyone tell me which type of error is this and why is this generated? enter image description here*error shown in the image.

#include<stdio.h>
    main()
    {
    clrscr();
    putc('a',stdout);
    getch();
    }
link|improve this question

3  
The error is a coded message that, when decoded, reads "Please upgrade immediately to a real compiler from the 21st century" – David Heffernan Dec 19 '11 at 18:47
feedback

1 Answer

up vote 1 down vote accepted

Turbo-C was orignally meant to run under Windows 3.1. Filesystems have changed in the past 18 years.

What OS are you trying to run this under? The problem is the age of the code and the OS configuration you have, I believe.

link|improve this answer
1  
The code itself is fine; it's the compiler or the library binaries that are messed up. – Dave Dec 19 '11 at 18:33
OS that I'm using is windows xp with turbo c 3.0 version – Abhinav Pandey Dec 19 '11 at 18:36
@dave: You mean the DOS-level code that uses BIOS interrupts to write to the screen? – jim mcnamara Dec 19 '11 at 18:38
@ahbinav - there are free compilers that are not completely ancient like Turbo-C. It has memory limitations (memory models). download cygwin with gcc for example - see: www.cygwin.com – jim mcnamara Dec 19 '11 at 18:40
1  
@jim cygwin is rather heavyweight for a C compiler. mingw would be a much better recommendation. – David Heffernan Dec 19 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.