Top "Turbo-c" questions

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

Definition/body of the printf & scanf function in C

Where do i find the definition/body of the printf/scanf & other similar predefined commonly used functions (getch, clrsr ...…

c header-files turbo-c
How to compile a program of c Language manually on MS DOS instead of Borland

I need to compile a program in MS DOS. I have Borland Editor, I can compile it using Alt+F9 …

c turbo-c
Boundary fill algorithm in C not working (Computer Graphics - C Programming)

I'm trying to implement the simple boundary fill method (using 4 connected approach) for filling a rectangle. I did it as …

c graphics turbo-c bgi
Input text in graphics in C programming

I am making a project in C. Its simple, just a Hangman Game. Got the logic already cause I've done …

c turbo-c
Windows.h in C using Turbo-C

I cannot find windows.h in my include folder of Turbo C and hence cannot work with the Win32 api's …

c winapi turbo-c
pieslice() function in C

How can I draw a major pieslice in C, using the function pieslice()? pieslice(X-centre,Y-centre,StrtAngle,EndAngle,Radius). I …

c graphics geometric-arc turbo-c sector
Use of kbhit() with while loop

Here is the program. void main( ) { int h, v; h = 1; v = 10; while ( !kbhit( ) || h <= 80 ) { gotoxy( h, v ); printf( "<…

c while-loop turbo-c kbhit