Thread: debuggin

  1. #1
    Registered User
    Join Date
    Nov 2006
    Posts
    2

    debuggin

    my turbo c complier posses an error sayin unable to include stdio.h file
    how do i rectify it?

  2. #2
    Reverse Engineer maxorator's Avatar
    Join Date
    Aug 2005
    Location
    Estonia
    Posts
    2,318
    You should not use Turbo C, it's a very old compiler.
    "The Internet treats censorship as damage and routes around it." - John Gilmore

  3. #3
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    Yes, maxorator is correct. Turbo C should be in a museum for old compilers along with TurboC++ and MSVC++6.0.

    Use a more updated compiler. DevC++ is a good one and is free of charge from the bloodshed website.

  4. #4
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >how do i rectify it?
    Re-install. It looks like something got corrupted (or the installation was done incorrectly to begin with).
    My best code is written with the delete key.

  5. #5
    Reverse Engineer maxorator's Avatar
    Join Date
    Aug 2005
    Location
    Estonia
    Posts
    2,318
    Re-install.
    Do not re-install. Uninstall it and install something newer, like Dev-C++ (basically MinGW).
    "The Internet treats censorship as damage and routes around it." - John Gilmore

  6. #6
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >Do not re-install. Uninstall it and install something newer, like Dev-C++ (basically MinGW).
    Hush. While I agree with you completely, many times that's just not an option.
    My best code is written with the delete key.

  7. #7
    MFC killed my cat! manutd's Avatar
    Join Date
    Sep 2006
    Location
    Boston, Massachusetts
    Posts
    870
    If not that, then download gcc or g++ as these are constantly updated. They are also command-line like Turbo C, but with no CUI.
    Silence is better than unmeaning words.
    - Pythagoras
    My blog

  8. #8
    Registered User
    Join Date
    Oct 2001
    Posts
    2,934
    >unable to include stdio.h file
    >how do i rectify it?
    And make sure you wrote:
    Code:
    #include <stdio.h>
    versus:
    Code:
    #include "stdio.h"

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Debuggin a Simple STL Algorithm :: STL
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 10-25-2002, 10:09 AM