Questions tagged [turbo-c]

Turbo C was an Integrated Development Environment and compiler for the C programming language from Borland, released in 1987. It had been re-release as freeware version 2.01 by 2006.

First introduced in 1987, it was noted for its integrated development environment, small size, fast compile speed, comprehensive manuals and low price.

Today, Turbo C is considered obsolete. It is a 16-bit compiler for DOS environments, and as such cannot access more than 640 KB of memory (and even that only with difficulty), and cannot interoperate with 32- and 64-bit code in modern operating systems. Additionally, due to its age, its standard library differs in some significant fashions from modern C libraries. Plainly put, it is not an appropriate tool for many development tasks today.

Despite this, it is sometimes used in introductory C programming courses, particularly in India. Students using Turbo C should keep its limitations in mind.

273 questions
-5
votes
4 answers

Different behavior of printf() in Turbo C and gcc when trying to print a pointer

The code below gives the output without error in Turbo C compiler, and gives the address of variable and its value both: int a=5,*fp; fp=&a; printf("%d %d\n",fp,*fp); But when I compile the same code in Linux with GCC compiler, it gives an error:…
FossArduino
  • 161
  • 2
  • 2
  • 11
-5
votes
1 answer

PIN number to asterisk "*"

#include #include #include int c,p,p1,p2,p3,Strans, Ctrans; float amount; int Cbalance = 5000; int Sbalance = 10000; char print; void transaction(){ clrscr(); cout<<"Choose your…
-6
votes
1 answer

how can I create a truth table in turbo c

I have a project where I will create a truth table, and the user will input propositions and its operator and my program will output the truth values providing with a truth table. I have following questions: can I use parsing techniques using turbo…
Spencer
  • 9
  • 6
1 2 3
18
19