Tagged Questions
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
580 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
4answers
120 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
211 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
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
3answers
151 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
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
2answers
706 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
4answers
458 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
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
1answer
54 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
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
211 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
121 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
234 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
6answers
240 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
2answers
209 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
2answers
739 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
823 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
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.
-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 ...