Unable to open include file 'stdio.h" in turbo c

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mizaki100
    New Member
    • Jun 2010
    • 1

    Unable to open include file 'stdio.h" in turbo c

    But when i check the include folder i found an STDIO h file what does it mean i am a beginner thanks in advance
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    It means you compiler is configured incorrectly and is not looking in that directory.

    Comment

    • Dheeraj Joshi
      Recognized Expert Top Contributor
      • Jul 2009
      • 1129

      #3
      Check the directory where include files present is same as which is pointed by your compiler?

      Regards
      Dheeraj Joshi

      Comment

      • donbock
        Recognized Expert Top Contributor
        • Mar 2008
        • 2427

        #4
        Filenames in DOS and Windows are not case-sensitive. Your program's attempt to include stdio.h will be satisfied by a file named STDIO.H. Don't let the uppercase filename worry you.

        You want to be careful to pretend you never noticed the file on your system is called STDIO.H. Your source code should still refer to the standard all-lower-case filename. Some day your program might be ported to an environment that more closely matches C and unix norms.

        It is customary to use angle brackets around the names of standard library headers:
        #include <stdio.h>

        Some compilers use a different directory search list for angle-bracket includes; for other compilers there is no difference between quotes and angle-brackets. No way to know what your compiler does until you give it a try.

        Comment

        • ManoosAjnabi
          New Member
          • Jun 2010
          • 2

          #5
          Don't worry...

          Just check the directory settings in your IDE. I do not exactly remember since haven't used it much in the past 6/7 years. But if you know the path to the header file, update the existing path in your IDE with the correct path and it should be alright.

          Hope this helps!
          ------------------------------
          Hum...keh tehre ajnabi itni mulaqaton ke baad...

          Comment

          Working...