Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
8answers
620 views

Current Standard C Compiler?

I wanted to know what is the current standard C compiler being used by companies. I know of the following compilers and don't understand which one to use for learning purposes. Turbo C Borland C ...
4
votes
4answers
114 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 ...
3
votes
3answers
96 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 ...
3
votes
4answers
382 views

Using assembly routines with C on DOS

I've been playing with DOS real mode assembly for a while and now I want to utilize some routines in a C program. I'm using Turbo C 2.01 and TASM 3.0. I'm however unable to modify a variable passed by ...
3
votes
3answers
527 views

Alternative to Turbo C

My university is hosting a Programming Competition, and have decided to support Turbo C (the 16-bit DOS version) as a valid programming environment. I have just read that PC^2, the software that is ...
2
votes
4answers
75 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 ...
2
votes
1answer
292 views

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 am trying to draw a major sector or pieslice in C, using the pieslice ...
2
votes
10answers
800 views

How do I perform “Millions of Calculations?”

My code is pasted below.When I run this program,it keeps on calculating.I am using the old Turbo C++ compiler.How much time should such a program take to execute?I waited about 5 minutes but there ...
2
votes
3answers
92 views

Problem occur in case structure

I am doing my project to implement a typing tutor application in turbo C compiler (this is the limit), this function is actually a look up table for x,y and key character but it is returning a garbage ...
2
votes
4answers
750 views

about turbo c working under windows 7

i am using windows 7 64 bit laptop.i installed turbo c and write programs using dosbox, but i can't run the program.... when run is selected it show some message like not an :exe plz give solution to ...
2
votes
3answers
939 views

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 Can someone please suggest a workaround? thanks
2
votes
3answers
923 views

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 compaq laptop it's not getting executed. I developed it using Turbo C. Then i tried writing a simple ...
1
vote
2answers
121 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
vote
3answers
282 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
167 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 ...
1
vote
1answer
236 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
124 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 ...
1
vote
7answers
77 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 ...
1
vote
2answers
777 views

How to terminate an infinite loop in Turbo C

I am using Turbo C... I am stuck then in an infinite loop. How to terminate this loop. I tried to use/press [Cntrl][c] but nothing happens, I don't know the way to stop it. Here's the code. main() { ...
1
vote
1answer
467 views

problem in coloring in C

I am using graphics.h library to implement the a shutdown button on the display screen.The problem I am facing is that the color function(setfillcolor()) is not working by which I want to color the ...
1
vote
2answers
741 views

how to create a project in turbo c++ 16 bit compiler

I want to create a project file turbo c++ and link the files in this project. Although i have tried for it but i found only one option that to open a project no option to create a new project. So How ...
0
votes
1answer
20 views

How to install turbo c

How can I install turbo c in Windows 7 64bit version.I searched for this and found some solutions like installing with dos box. but I don't know how to do this. can any one help me?
0
votes
1answer
63 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 ...
0
votes
0answers
54 views

Reasons for the different answers in different compilers in C program? [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) I have a piece of code compiled in GCC compiler which gives 41 as the answer ...
0
votes
1answer
58 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 ...
0
votes
1answer
110 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
135 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 ...
0
votes
2answers
78 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 ...
0
votes
3answers
128 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
241 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() != '.' ) ...
0
votes
2answers
144 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 ...
0
votes
6answers
432 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 ...
0
votes
2answers
312 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
0answers
168 views

problem handling 2d dynamically allocated array in 8086 assembly

so, i'm trying to figure out how to handle 2d (dynamically allocated) arrays in assembly in memory model large. keep in mind this is 8086 asm, called from a turbo c. the program add +2 to each cell ...
0
votes
4answers
208 views

Turbo C Array Question [closed]

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
175 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
171 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
183 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 ...
0
votes
2answers
179 views

Turbo C Question

Hello I am using Turbo C... I just have some query, I found a code of TC in a book but I'm not satisfied with the given clarification. Here's the code: main() { int count = -1; /* ...
0
votes
2answers
426 views

undefined symbol linker turbo c

I'm programming a queue of my own struct data type in Turbo C++ 3.0, I can't build my project because TC presents me an error message of Undefined symbol when it try to linked it. I have the ...
0
votes
0answers
46 views

the changes in the content of txt by opening in r+ is not reflecting in the actual file! (both in turbo c and dev)

my friend is writing a folder lock software. for that he has to rename the names of some folders stored in 1 single text file. for that purpose we used r+ but, we saw that whatever we overwrite, ...
0
votes
2answers
2k views

graphics.h programs not running in Dosbox Windows 7 environment

I have installed Dosbox to run Turbo C in it. But my graphics.h programs are not executing in it. I am getting Linker Error which says"Undefined sumbol initgraph in module..." and so on. please help ...
0
votes
2answers
245 views

How to code C in a x64 bit machine?

My new PC is Dell Inspiron 580s which is a x64 machine. Before which I used to code in TURBO C++ in my x86 machine. Since I was unable to run TURBO C++ in the new system. I installed NetBeans 6 IDE ...
0
votes
3answers
234 views

why there are some errors in the mex.h?

I opened a c file in Turbo C, the beginning of this c file looks like this: #include <math.h> #include <stdio.h> #include "mex.h" #include "matrix.h" It uses some of the matlab ...
0
votes
2answers
207 views

Which version of ANSI C standard does Turbo C 3.0 follow?

Which version of ANSI C standard does Turbo C 3.0 follow wholly or partly? C89 or C90 ?
0
votes
1answer
308 views

Error: Out of memory in function main

I get this error whenever I put more of my gotoxy and textcolor but when putting more printf this error does not appear...well this was not appearing before, it just appeared in lately after tons of ...
0
votes
5answers
4k views

How to fix “unable to open stdio.h in Turbo C” error?

Whenever I compile my program, I get the error above.
-1
votes
1answer
82 views

Totally unexpected error no clue

Unexpected error comes out when I tried to run this code below. Can anyone tell me which type of error is this and why is this generated? *error shown in the image. #include<stdio.h> ...
-1
votes
2answers
125 views

A very simple code in Turbo C that produces some surprise output [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Only a one line of code in Turbo C that produces somewhat a strange result. It is ...
-1
votes
1answer
178 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 ...

1 2