Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
18answers
1k views

Why not Turbo C++?

I am an Engineering Student from University Of Mumbai::RAIT. I am learning C++ from "C++ Primer" by Stanley Lipman and using Visual C++ 2008 as IDE. But, my institute and most of the institutes in my ...
8
votes
3answers
583 views

Is there any way to obtain antique versions of Borland's Turbo C++ compiler for free?

I am looking for an old version of the Borland Turbo C++ compiler. However I have to get it in legal way. Has anyone heard something about discounts for such old compilers? [EDIT] I would like to ...
2
votes
5answers
127 views

Should Turbo C++ still be used for learning purposes?

I'm a young student trying to learn C and C++ to a more advanced level, and in my school, on every computer there are only 2 compilers: Mingw and Turbo C++, from which we only use Turbo C++ At home ...
2
votes
4answers
212 views

Visual c++ to turbo c++

Hi I have written a program in visual c++ and for whatever reason now i need to run/compile this same program in turbo c++ 3.0. I have managed to get the compiler from some source but I get a lot of ...
2
votes
3answers
194 views

Vesa Mode in Turbo C++

How to implement vesa mode in Turbo C++?
2
votes
3answers
191 views

'??' is getting converted into '^' in Visual C++. Why is it happening and what is the way out?

'??' gets converted into '^' if I compile mn VC++ program and run it e.g. sprintf( ch, "??") prints out ^ But if I run the same code in Turbo C/C++, there is no such problem. Why is it ...
2
votes
4answers
2k views

C Language - \n - creating virus

#include<stdio.h> #include<conio.h> union abc { int a; int x; float g; }; struct pqr { int a; int x; float g; } ; void main() { union abc b; struct pqr c; ...
1
vote
2answers
48 views

Turbo C++ using C language by default?

I've recently gotten Turbo C++ 3.0 compiler from my school computer, for making both C and C++ programs, however it doesn't seem to recognize C++ code. For example if I add #include <iostream> ...
1
vote
0answers
43 views

Uncompression stops inbetween and output file filled with zeros(BLACK PIXELS)?

I am trying to apply DCT(discrete cosine transformation) compression on a bmp(bitmap) file. I have a c file which i am running in Turbo C++. The code is as follows: /* the image to be compressed is a ...
1
vote
3answers
90 views

Why isn't this C program for calculating the area of a triangle working for all inputs?

The following is the source code of a program which calculates the area of a triangle when the sides are given. #include<stdio.h> #include<conio.h> #include<math.h> void main() { ...
1
vote
3answers
153 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
3answers
269 views

“using namespace …” Why?

I am new to C++ programming and we make use of Turbo C++ (old IDE) to compile our programs. The problem is that in Turbo C++ we never make use of namespaces or even std::cout while programming. We ...
1
vote
2answers
209 views

Which editor for coding in Borland C++

I have a 64 bit OS (Windows 7). i want to code in C++ but the default editor of Borland does not support full screen mode on my system. Which editor do i use to solve this problem? I want to code in ...
1
vote
5answers
154 views

C programme memory violation

I have below programme where memory is read-only, but I am still able to write to it. main() { char *p="amit"; p[0]="s"; printf("%s",p); } The output is "smit" Is it the expected output since p ...
1
vote
2answers
177 views

C program gives an output different on different compiler

I ran a C program and got different output on different C compilers. Below is my program void main() { int i=5; printf("%d%d%d%d%d",i++,i--,++i,--i,i); } ON boarnland c++ complier o/p is ...
1
vote
2answers
708 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 ...
1
vote
3answers
193 views

Implement Thread in Turbo C++

How to Implement Thread in Turbo C++?
1
vote
4answers
459 views

Is Borland C++ v3 for DOS available anywhere now?

I'm looking for a copy of either Borland C++ v3 or Turbo C++ which can run on DOS, but my searches are turning up a blank. I vaguely remember a free Turbo version available, but can't track it down. ...
1
vote
4answers
790 views

unable to use turboc through xp. why? solution?

I'm having problems opening directly TurboC++ compiler(dos version) on Windows X. if I click on the TurboC++ icon through windows GUI it opens for a sec(a blank dos screen) and shuts down. so i have ...
1
vote
5answers
666 views

Is it possible to generate a DLL using Turbo C/C++ compiler?

I need this for calling a C function from Java class (JNI) and I know that there are options to do this using "Microsoft Visual C++ compiler". (explained here) But I am interested to know if ...
1
vote
6answers
4k views

About the exit() function in C++

The getche() function doesn't terminate the program properly, so I want to try exit(int status) function. How does it work in Turbo C++ programming language? I cannot understand the explanation in ...
0
votes
2answers
89 views

What is the alternative of Turbo C++ 3.0 BGI Graphics Library for VC++2008?

Alternatives to graphics.h Turbo C++ 3.0 is an antique software. But it is still the most popular IDE among the students in India. One of the major advantages of using Turbo C++ 3.0 is its BGI ...
0
votes
1answer
55 views

Postfix Expression Evaluation Troublesome(PEET)

I have converted my infix into postfix expression, which is 3*(4+5)/10-1 into 345+*10/1- How we can read 10 from postfix expression, because string length function reading just 1 instead ...
0
votes
1answer
71 views

Using the IBM 3514 Borland Graphics Interface driver in High resolution mode in Turbo C++ on Windows 7 64 bit OS using DosBox

I'm running a graphical program in Turbo C++ using DosBox on Windows 7 64 bit. Now, I want to use the IBM3514 graphics driver in the High resolution mode (IBM3514HI). So, I wrote the following bare ...
0
votes
0answers
223 views

c++ MinMax Implementation in tictactoe [closed]

Recently I started out learning on c++. I have written a program for tictactoe and Ive tried to implement the MinMax Algorithm to get the AI working. The trouble is I haven't got it right as the AI ...
0
votes
3answers
212 views

Alternatives to graphics.h

We have an introductory course to Computer Graphics this semester in college. There is no recommended way on how to go about the Lab exercises. Most of the students are resorting to Turbo C and the ...
0
votes
1answer
124 views

Grayscale image converting Turbo C++

I am trying to convert an RGB image to a grayscale image. RGB image is 160*120*4, while my grayscale is 160*120*1. However, it doesnt gives me wat i wan but just plain black and it takes a very long ...
0
votes
1answer
78 views

Borland Turbo C++, event functions

Can anyone tell me how do I display the calculation in the TLabelEdit and why can't I do the mathematics calculation? I have included <math.h>. void __fastcall TForm1::LabelEdit1(TObject ...
0
votes
1answer
235 views

how can i run a c++ file in turbo c in windows 7

hi my dear friends : i am asp.net web developer and never work with c++ i have a little project from my sister that i want to test it for her about car graphic like below : that code Animated 3D ...
0
votes
0answers
132 views

How to add opencv to turbo c++?

I need to work with opencv library using turbo c++. I've downloaded opencv and installed turbo c++, but how to integrate both of them
0
votes
6answers
242 views

NULL pointer assignment error

Hi I have written the following code in Turbo c++ compiler and try to print postfix & infix, but it is displaying NULL pointer assignment. I m not getting why it is happening. Please help me.... ...
0
votes
0answers
143 views

Why it doesn't print correctly?

So I have this code using C and inline ASM, which is supposed to replace the original Timer Interrupt and use my own. After that it should manage 4 "proccess" which are just procedures that print ...
0
votes
5answers
548 views

gotoxy function in turbo c

How can I set x and y in Based on pixel in gotoxy(x,y) function?
0
votes
1answer
138 views

Abnormal Program Termination In A Turbo C++ Web Browser

I've been trying to make a workable web browser in Turbo C++ (I can't help it; I am supposed to work within the confines of my educational system). Essentially, what I have created is a simple parser ...
0
votes
2answers
210 views

How to set textalignment in TEdit control

I'm using turbo c++ explorer edition (the free edition). Is there somebody that know how i can set the textAlignment of a TEdit control?
0
votes
3answers
157 views

Building legacy Turbo C++ Code

I am looking to revive some old C++ code, developed in Turbo C++ for DOS. It's a console-based text game. This app makes heavy use of conio.h - the Turbo C-specific functions (I think) gotoxy(), ...
0
votes
1answer
420 views

How to connect “Database” with Turbo C++?

I want to connect "Microsoft Access" with "Turbo C++". How can I do that?
0
votes
1answer
44 views

Merge Video drivers for graphics application in Turbo C++

How to merge Video drivers for graphics application in Turbo C++?
0
votes
3answers
369 views

I want to run Turbo C++ in my 64bit laptop? But I can't find any version that support 64bit platforms

I want to run Turbo C++ in my 64bit laptop? But I can't find any version of tc that support 64bit platforms. Do you know of any place I can download a compatible version?
0
votes
2answers
742 views

Steganography : Encoded audio and video file not being played, getting corrupted. What is the issue

I have made a steganography program to encrypt/Decrypt some text under image audio and video. I used image as bmp(54 byte header) file, audio as wav(44 byte header) file and video as avi(56 byte ...
0
votes
2answers
221 views

Can I use dll in Turbo C++ program and do we have any dll for lzw compression and decompression

I was trying to create a lzw compression program. But i need to finish it by today itself so i want to use some dll for taking my input as txt file and output to as a text file. I want to do this in ...
0
votes
4answers
825 views

Reading bmp file for steganography

I am trying to read a bmp file in C++(Turbo). But i m not able to print binary stream. I want to encode txt file into it and decrypt it. How can i do this. I read that bmp file header is of 54 byte. ...
0
votes
4answers
261 views

long integer problem

I'm a beginner at C, and using Turbo C++ compiler (16 bit). In the software I'm writing, the maximum answer is around 32000. If I want a number larger than that, I use long int. If I execute the ...
0
votes
1answer
564 views

How to change file icon in Turbo C++ and cc3270.dll

I started to use Borland's Turbo C++ a few days ago. I actually have two questions. 1.: How can i change the file icon?? If i create a program (Console Application), it will always have this blue ...
0
votes
5answers
5k views

How to pass an integer as command line argument in turbo c++

I am unable to pass integer value through the command line in turbo c++. Please help me.
0
votes
2answers
851 views

Borland Dev Studio 2006 Turbo C++ Explorer compile issue [closed]

G'day everyone I'm a newbie to C++ and even more so to Borland Turbo C++ Explorer. I've just encountered this compile error. Any clues as to how to fix it? [C++ Error] comsvcs.h(3209): E2015 ...
-3
votes
1answer
165 views

Classes and Objects in C++

class anurag { private: int rollno; char name[50]; int marks; float percen; void percentage(int num) { percen=(num/500)*100; } public: void getdata(void) { cout<<"\n\nEnter the name of the ...