954,167 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

compilers for c++

Hi i'm a newbie c++ programmer so I don't know much about compilers.I have a c++7 and a bulit-in text editor but when I try to retrieve the bytes the variable "Bool" takes the error or warning message says that bool is an undeclared identifier should I try with boolean? Is my compiler ok? :rolleyes:and would someone please tell me the difference between borland turbo c++ and only c++...

camelNotation
Posting Whiz in Training
208 posts since Sep 2003
Reputation Points: 16
Solved Threads: 2
 

Regardless of what you use to write your c++ code, you need a compiler to turn it into an executable. C++ 7? What compiler is that? The Borland Turbo C++ compilers/ides are really nice, and a lot more straight-to-the-point (IMHO) than Microsoft Visual C++, for example.

Basically, you're looking at IDEs, integrated development environments. They combine the editor (with syntax highlighting) and the compiler into one.

If you were working on a unix platform, for example, gcc is a c++ compiler, only. You would write the c++ code in a text editor such as emacs, and then compile the code in a terminal via g++ file.cpp

Copy/paste the code you're having a problem with in a new thread and I'll take a looksie at it. e.g.

bool myVar;
cscgal
The Queen of DaniWeb
Administrator
19,421 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 229
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You