Stdio H Download


Questions about Stdio H:

  1. Turbo C 3. 2010-06-29 05:40:22

    No.
    TurboC is your compiler.
    If you are having trouble in including stdio.h,
    Go to OPTIONS>DIRECTORIES
    Set include path to your turboc_install_path\include

  1. How i can do free downloading of c programming? 2006-06-27 04:55:22

    try downloading Bloodshed Studio instead it is a free GNU Compliant compiler,

  1. I can't get "helloworld" to work with the program dev-c+ 2009-04-06 14:31:16

    stdio.h and iostream are console libraries. When you access them from Windows, they create a console to run in which is destroyed as soon as they finish. I use Linux these days, and keep a console open to compile and run gcc (which is what you are running) and the programs I make in it (even x-windows programs).

    To look at what is going on in the console when you use EITHER stdio.h OR iostream (which you will for the time being) put

    system("pause.exe");

    before your return 0. That calls a program, pause, which prints the message "Press any Key" and does nothing until you do.