Top "Turbo-c" questions

Turbo C was an Integrated Development Environment and compiler for the C programming language from Borland, released in 1987.

Why the range of int is -32768 to 32767?

Why the range of any data type is greater on negative side as compare to positive side? For example, in …

c visual-studio int turbo-c
How can I terminate an infinite loop in Turbo C?

I get stuck in an infinite loop. How can I terminate this loop? I tried to use/press Cntrlc but …

c infinite-loop turbo-c
BGI error, How to Resolve it?

I want to run a C program that draws a circle. The program is compiling with no error and it …

c turbo-c bgi
Cannot run c graphics programs

I have developed a graphic program on a desktop system. But when I tried to run it on the hp …

c turbo-c
strstr to find a word in a string using c returning true all the time

Good Day, So I decided to go trough my C again and started making a simple search the word in …

c c-strings turbo-c
C Two-Dimensional Array

I'm going to ask something about my code provided below... My question is in the line where there's a comment /*…

c multidimensional-array turbo-c
linker error: undefined symbol _sum in module my.c

I am getting following error when I add user defined method in library using turbo c linker error: undefined symbol _…

turbo-c
No output when running program

I had a issue with running a c-program. I am using Turbo C++ compiler but when I write a code …

c turbo-c
What exactly getch() does in C?

I thought (upto now) that the function of getch() reads a character from input buffer (or keyboard, to be simple). …

c turbo-c getch