Turbo C is an Integrated Development Environment and compiler for the C programming language from Borland.

learn more… | top users | synonyms

1
vote
0answers
12 views

How to use Ethernet interrupt with vdx-6354 (vortex86dx)

I am new to vdx-6354 (PC/104) and I am getting familiar with it @ my work. We need to send/receive data over Ethernet. I have managed to run DSOCKS library demo projects successfully but there is a ...
1
vote
4answers
70 views

Is this a valid C program?

I wrote a program, where the size of an array is taken as an input from user. #include <stdio.h> main() { int x; scanf("%d", &x); int y[x]; /* some stuff */ } This program ...
-6
votes
0answers
46 views

AODV Project in C [closed]

AODV - Ad hoc on demand distance vector My Professor has given me the project on AODV implementation in C. I don't have any idea how to represent it without internet and ns. Kindly help me how to ...
-1
votes
1answer
115 views

What is the latest version of TurboC? [closed]

In my college they have prescribed Turbo C, for my academics. I know it is pretty old, but I want to download the latest version of it. I have a turbo c of 1980, a DOS version. Is any latest version ...
1
vote
1answer
81 views

negative x value for outtextxy in graphics.h C

I made a game that utilizes graphics.h. I use a while loop to create the screen output, so the x1 value in the below example decreases by 5 all the time. This means that I keep on creating all screens ...
0
votes
1answer
112 views

Explain how and why the pointer has been used in the following turbo C code

int a[10],sum,*p; sum=0; for(p=&a[0];p<&a[10];p++) sum += *p; printf("%d",sum) Hi I'm new in turbo c, especially in pointers. Can someone please explain to me how the pointer was used ...
0
votes
3answers
182 views

Why in C++ the output of integer variable of value 65536 is 0 and < 65536 gives a negative integer and > 65536 value gives a positive integer? [closed]

Why in Turbo C++ IDE the output of an integer variable of a hard coded value of 65536 is 0 and lesser than that value (65536) is a negative integer and greater than that value (65536) is a positive ...
0
votes
5answers
326 views

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). But i had to argue with my lab instructor. They say that the only work of getch() is ...
0
votes
1answer
164 views

c program graphics error

I have implemented the boundary fill algorithm in C language with the following code:-- /* WAP to fill the polygon using boundary fill 4 connected algo */ #include "stdio.h" #include "conio.h" ...
0
votes
3answers
599 views

Getting the coordinate of mouse click in C

I found this header file on google to perform mouse related events in C program but i am having no idea of int86 union REGS i,o; and what are other int86 type functions available in C? I am using ...
0
votes
4answers
101 views

Opening an image file in the output screen

I want to create a photo viewer kind of software using C. But i am stuck at the point thinking that how would i load an image file in the output screen of C in Windows OS?
1
vote
3answers
365 views

Search for an ID in a text file (Turbo c)

I have this little homework: Given a text file, create a function that searches for a specific ID provided by the user, inside the file. If it exists, print the entire profile as follows: ...
6
votes
4answers
209 views

How does C++ store functions and objects in memory?

Lets say we have a class class A { int x; public: void sayHi() { cout<<"Hi"; } }; int main() { A *a=NULL; a->sayHi(); } The above code will compile on Turbo C(where i ...
0
votes
4answers
300 views

Char Array in Turbo C

Okay so I have this code char from; clrscr(); printf("Enter: "); scanf("%s", &from); if(from == 'a' || from == 'A') { // blah blah code } Is there any other way or shortcut on the condition ...
0
votes
1answer
119 views

Turbo C options [closed]

How to make options in Turbo C? char from, to; I want the user to input a letter from these options From: [A] - Decimal [B] - Binary [C] - Octal [D] - Hexadecimal Enter ...
0
votes
1answer
173 views

SHA256 Algorithm in Turbo C not able to compile

I am trying to run the SHA256 algorithm in c which is given on wesite [Koders Code Search][2] For that I am using Turbo C Compilar on windows machine and it is installed on with directory path set ...
0
votes
3answers
898 views

C program is running without including Header files? [duplicate]

Possible Duplicate: C program without header I have been studying C for a long time . but one thing that bothering me is that , today I made a C program and forget to include the stdio.h ...
2
votes
2answers
519 views

How to access non-standard COM ports (USB->Serial, COM5+) in DOS/C?

I'm working with an in-house software tool that displays & logs formatted diagnostic data collected from the serial debug port of the product I develop embedded software for. It's in C and very ...
0
votes
4answers
759 views

Handling files with Turbo C

I have to make a program that manages info it obtains from a file, but I'm using Turbo C 3.0 which is ancient, so I'm getting errors trying to write to the file, here is my code: #include ...
-4
votes
1answer
138 views

fwrite been writing a wrong character into the file in C [closed]

i been trying out an simple encryption algorithm, which is actually been used to encrypt 2 words, i tried with abcabc in the image.jpg file, and then the encrypted data should be coming out as aboabo ...
0
votes
3answers
643 views

How to include the basic header files which are available with C in UNIX?

When we work on Turbo C, we get all the functions and header files by default which we can include normally by #inlcude eg: stdlib.h, math.h But when writing a simple program using such header ...
0
votes
0answers
484 views

Error when running the same program repeatedly in Turbo C using DosBox in Windows7 64bit

I am trying to use Turbo C with DosBox (DosBox 0.74) in my Windows 7 64 bit. The program works perfectly fine its first run. It compiles successfully without error and also executes flawlessly. As I ...
0
votes
1answer
196 views

Mouse programming in c [closed]

I am working on my minor project. I have to create an image editor in C. For that I want to handle mouse. As I know there are two approaches to handle mouse viz REQUEST MODE and EVENT MODE. Over the ...
-1
votes
3answers
281 views

Go through a 2 dimensional array in C

I want to print a two dimensional array's value, one by one. But my code shows one item many times :( #include<stdio.h> #include<conio.h> void main() { char ...
0
votes
4answers
380 views

Size of 1 int in C++? [duplicate]

Possible Duplicate: size of int, long, etc Okay, someone asked me the size of one int in c++ and i answered her 4 bytes. Was it wrong? She said me one int equals 2 bytes. Is that true? Or ...
0
votes
1answer
510 views

Best quick alternative compiler/IDE to Turbo C that supports audio and graphics

I am making a small 2d GAME PACK as my University project. I am using Turboc 3.0 as the compiler. I am at a stage where I need better graphics and sound. Ive spent days looking for a workaround on the ...
3
votes
3answers
856 views

Turbo C compiler issue, sqrt() function not working with variable arguments

I searched the question similar to my problem Similar problem. But my problem is when using Turbo C compiler v3.0. Should I have to do some additional work for math.h file? please help. int main ...
4
votes
4answers
870 views

Easiest way to colour text in C/C++ DOS?

I made a basic snake game in a DOS enviroment using turbo C++ 3.0, and I'm quite a rookie myself. I've been looking for a while for a very simple and perhaps rudimentary way of making text of ...
2
votes
4answers
355 views

pre and post increment operations on a variable give different output on TC and gcc

Here is my simple code ... #include<stdio.h> int main() { int i=5; printf("%d %d %d %d %d ",i++,i--,++i,--i,i); return 0; } On gcc,it gives output as '4 5 5 5 5' but on TC,it gives output as ...
0
votes
1answer
153 views

Resumable processor fault

The code below is ok with return n <= 100 && (printf("%d\n", n), print(n+1)) || 0; but gives error for return n <= 1000 && (printf("%d\n", n), print(n+1)) || 0; #include ...
1
vote
2answers
1k views

Handling A Keyboard Interrupt with Turbo C ++ 3.0

I have a project. That is a simple game , "Falling Blocks" . The game area is considered as a grid, which has 20x20 size. There will be falling blocks from top of the screen and a hero at the bottom, ...
0
votes
1answer
399 views

backspace and delete issues with the getch() function in DOS

I am using the Turbo C compiler on a Windows platform, Intel x86 architecture. In my program I am scanning user input from the keyboard. It is a login password program that takes in username and ...
0
votes
3answers
454 views

This code run on Turbo C but not on gcc compiler?

This code run on Turbo C but not on gcc compiler Error:syntax error before '*' token #include<stdio.h> int main() { char huge *near *far *ptr1; char near *far *huge *ptr2; char far *huge ...
2
votes
4answers
2k views

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 is running. After getting the values like radius from the user, I get the error like this : BGI error: ...
-1
votes
1answer
741 views

Turbo c ide. How to get full screen window of turbo c ide [closed]

i have dell 1764 laptop and my screen resolution is 1600x900. in my laptop turbo c doesn't run in fuul screen. how can i do this in my laptop. ? i use the windows seven. give the solution. or can i ...
0
votes
2answers
292 views

No module definition file specified

So i have this code, the snippet is given below. list* init(list* list1) { list1->head = NULL; list1->size = 0; return list1; } list1 is a linked list and init is called from main ...
1
vote
3answers
3k views

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 but the things is what it do at the backend. I want to compile it in MS DOS. I m trying this: ...
1
vote
3answers
473 views

How to edit and overwrite specific location in file in C++

I am making an airline reservation software and I don't know much about the Visual C++. I am using the simple compiler "TCWIN45". In my program I wish to use file handling and I am succeed to save all ...
0
votes
4answers
416 views

Problem with operator precedence

The O/p comes out to be x=2,y=1,z=1 which doesnt agree with the operator precedence. I was running this on Turbo c++ compiler: void main() { int x,y,z,q; x=y=z=1; q=++x || ++y && ...
0
votes
2answers
566 views

C ANSI Escape Code

How can I do cursor control with ANSI using escape sequences using Turbo C? Here I've provided a code, but it's not yet working in my TurboC. main() { while( getche() != '.' ) ...
1
vote
2answers
414 views

C Cursor Question

I'm a newbie in Turbo C... Just want to ask what is the first thing should I do to enable the use of cursor. I'd like to control the cursor and redefine keys on the keyboard as well. Please give me ...
1
vote
1answer
913 views

How to enable linking floating point library in TurboC?

I'm newbie in C language... Just want to ask how to enable linking floating point library in TurboC?
1
vote
2answers
227 views

Pointer notation question

I am using TurboC. What's wrong with this code? During the runtime, the message was "floating point formats not linked" "Abnormal program termination". I am a newbie in C language, and I've never ...
0
votes
6answers
1k views

Turbo C strcpy library function

I discovered that the strcpy function simply copied one string to anther. For instance, if a program included the following statements: char buffer[10]; ---------- strcpy(buffer, "Dante"); the ...
1
vote
7answers
128 views

C Array Question

When a simple variable name is used as an argument passed to a function, the function takes the value corresponding to this variable name and installs it as a new variable in a new memory location ...
2
votes
2answers
9k views

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 /*This line*/. I used variable y and x: y for the HEIGHT and x for the WIDTH. The very ...
0
votes
4answers
328 views

Turbo C Array Question [duplicate]

Possible Duplicate: Turbo C Array Question #include <stdio.h> #define LIM 40 int main() { int day=0; float temp[LIM]; do { printf("Enter ...
0
votes
1answer
357 views

Turbo C Array Question

I just want to ask something about my code. #define LIM 40 main() { int day=0; float temp[LIM]; clrscr(); do { printf("Enter temperature for day ...
0
votes
3answers
492 views

A weird behavior of C compilers GCC and Turbo

I've gone through other similar questions, but trying to understand the situation I'm facing. So, here's my two line C code. int i=0; printf("%d %d %d %d %d",i++,i--,++i,--i,i); And here are the ...
0
votes
1answer
349 views

wav file handling in C

I want to read a wav file & change its bit per sample rate(from 16 to 32). But my program is not copying entire file. Source file is 175KB where as destination file is only 2KB. Bits per sample is ...

1 2