About 259,000 results
Open links in new tab
  1. c99 - What is wrong with using turbo C? - Stack Overflow

    Oct 13, 2010 · The most important reason you should use decent C compiler is performance. Since GCC optimizes the code aggressively, the compiled programs would have the …

  2. What is the difference between using Turbo C and GNU C/C++?

    Apr 19, 2019 · Turbo C/C++ is outdated since decades while GCC is still maintained to keep up with the current standard, to list the differences would fill a whole book.

  3. turbo c - How to compile a program of the C language manually …

    May 23, 2023 · If I remember correctly, Borland/Turbo C compiler's command line options didn't look like gcc options. You should try tcc /? for a command line help.

  4. Why in Turbo C compiler sizeof (int) is 2 bytes and in gcc Linux ...

    Jul 13, 2015 · Turbo C is a 16 bit compiler so it compiles the code into a 16 bit machine code for the processor! As we all know, a compiler will convert the code to a machine code in order to …

  5. How to set the Turbo C path in windows? - Stack Overflow

    Turbo C was last released in the early 1990s, if I remember correctly. I might suggest downloading the free Visual Studio Express Edition which is a much more modern compiler …

  6. How to fix "unable to open stdio.h in Turbo C" error?

    Mar 1, 2010 · If not, then your installation of Turbo C is broken; reinstall. If you can find it, then you will have to establish why the compiler is not searching for it in the right place - what are …

  7. What is the difference between small memory model and large …

    Oct 8, 2024 · What difference does it make when I choose "large memory model" instead of "small memory model" inside Turbo C compiler? How does that change behavior of my program?

  8. Compiling a C++ program from cmd using TCC in turbo c++

    May 18, 2018 · I am aware that Turbo C4 compiled programs won't run in our modern OS but we can use dosbox which is provided in Turbo C4. Suppose my file name is test.cpp Then what …

  9. Is there any way to obtain antique versions of Borland's Turbo …

    Jun 9, 2014 · Here is an account of downloading and using it in 2023 (The Code Project): Revisiting Borland Turbo C/C++, A Great IDE back in the 90s. It should be possible to follow …

  10. Shouldn't an int pointer in Turbo C be of size 4 bytes?

    Jan 10, 2014 · 1 In the Turbo C compiler, the size of an int pointer is shown as 2 bytes when sizeof () operator is used. Now, if I print the address of an int variable, it comes out to be a …