473,395 Members | 1,742 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Why do all the compilers I try fail?

I have tried to you so many compilers and none of them seem to work
properly. Can anyone tell me if it's me, my computer or something else?
What does everyone else use?

?...

Crazy Carl

Dec 22 '05 #1
12 1307
"Crazy Carl" <cr*********@myway.com> wrote in news:1135212634.960252.259240
@g47g2000cwa.googlegroups.com:
I have tried to you so many compilers and none of them seem to work
properly. Can anyone tell me if it's me, my computer or something else?
It's you.
What does everyone else use?


A compiler for the target platform. Ask on a newsgroup specific to your
operating system and hardware....
Dec 22 '05 #2
Crazy Carl wrote:
I have tried to you so many compilers and none of them seem to work
properly. Can anyone tell me if it's me, my computer or something else?
What does everyone else use?

?...

Crazy Carl

How about make the question more concrete? :D
Dec 22 '05 #3
Crazy Carl wrote:
I have tried to you so many compilers and none of them seem to work
properly. Can anyone tell me if it's me, my computer or something else?
What does everyone else use?


Their brains.

Dec 23 '05 #4

hacker++ wrote:
Their brains.


Thanks for that.... REAL helpful.

Dec 23 '05 #5
I'm trying to learn c++ but no one seems very helpful. I tried reading
the books and learning it that way but I can't try any of the examples
because they wrote the examples for a specific compiler and they don't
work on any other. I'm trying the tutorials which are supposed to teach
the standard but even some of their examples don't work. I'm not old
enough to go to the classes at the collages and universities. I'd like
to know what compilers you use as well as how you went about learning
the language (What books you used, things you tried to do as you were
learning the language, etc.). Any non-derogatory advice would be
helpful. Pickin' on the noobs ain't nice...

Dec 23 '05 #6
Crazy Carl wrote:
I'm trying to learn c++ but no one seems very helpful. I tried reading
the books and learning it that way but I can't try any of the examples
because they wrote the examples for a specific compiler and they don't
work on any other. I'm trying the tutorials which are supposed to teach
the standard but even some of their examples don't work. I'm not old
enough to go to the classes at the collages and universities. I'd like
to know what compilers you use as well as how you went about learning
the language (What books you used, things you tried to do as you were
learning the language, etc.). Any non-derogatory advice would be
helpful. Pickin' on the noobs ain't nice...


Download the Borland compiler. It used to be state of the art, but it's still
good for playing around with C++
http://www.borland.com/downloads/download_cbuilder.html

--
Dirk

The Consensus:-
The political party for the new millenium
http://www.theconsensus.org
Dec 23 '05 #7
Dirk Bruere at Neopax wrote:
Download the Borland compiler. It used to be state of the art, but it's still
good for playing around with C++
http://www.borland.com/downloads/download_cbuilder.html

I do have an older Borland compiler, but if you think this one would
help I'll try it...

Crazy Carl

Dec 23 '05 #8
Crazy Carl wrote:
Dirk Bruere at Neopax wrote:
Download the Borland compiler. It used to be state of the art, but it's still
good for playing around with C++
http://www.borland.com/downloads/download_cbuilder.html


I do have an older Borland compiler, but if you think this one would
help I'll try it...

Crazy Carl


There should be no reason why the old one would not work.
I use 5.5 under XP for syntax checking and debugging before I transfer it to
realtime dev. Got it from the download page.

--
Dirk

The Consensus:-
The political party for the new millenium
http://www.theconsensus.org
Dec 23 '05 #9
On 23 Dec 2005 14:41:57 -0800, "Crazy Carl" <cr*********@myway.com>
wrote:
I do have an older Borland compiler, but if you think this one would
help I'll try it...
Crazy Carl


If you have the Borland C++ 4.5 or anything newer that should be
enough to get you started. Take note that older compilers used the
old header naming convention.

Example: #include <string>
You will use #include<string.h>.

If you have Borland Builder C++ even better. You should have help
files and they should show which headers to use.

If you are stating out examples can be quite confusing. A challange
will be to figure out nuances like above.

Good Luck.

On a side note has anyone ever made a "usable* IDE for the Borland
C++ 5.5 compiler?
Dec 24 '05 #10

Crazy Carl wrote in message
<11**********************@g44g2000cwa.googlegroups .com>...
Dirk Bruere at Neopax wrote:
Download the Borland compiler. It used to be state of the art, but it's still good for playing around with C++
http://www.borland.com/downloads/download_cbuilder.html

I do have an older Borland compiler, but if you think this one would
help I'll try it...

Crazy Carl

Hi Crazy Carl,

[ my suggestions ]

First thing, download and install this.
Dev-C++ IDE: http://www.bloodshed.net/
Get the package that has MinGW (the windows port of GCC (GNU Compiler
Collection)).
Alternate IDEs that will work with the DevCpp GCC(MinGW) installation:
MinGWStudio http://www.parinyasoft.com/
V IDE & V GUI: http://www.objectcentral.com/
Quincy IDE 2005 : http://pipou.net/down/Quincy2005Project.zip
www.gnu.org

Read the docs that come with DevCpp (in the 'help' menu.
--
Bob R
POVrookie
Dec 24 '05 #11

Forgot to add this to other post:

You might find this site interesting.

www.BruceEckel.com -> Books -> "Thinking in C++, vol. 1"
(since it only costs $(a download))

Two heads are better than one, and so are two books!

Note: This is NOT a programming beginner book, but, it has many good examples
to try out. It won't hurt you to read it along with your other books.

--
Bob R
POVrookie
Dec 24 '05 #12
On Sat, 24 Dec 2005 02:11:23 +0000, BobR wrote:

Forgot to add this to other post:

You might find this site interesting.

www.BruceEckel.com -> Books -> "Thinking in C++, vol. 1"
(since it only costs $(a download))

Two heads are better than one, and so are two books!

Note: This is NOT a programming beginner book, but, it has many good examples
to try out. It won't hurt you to read it along with your other books.


Heh, I downloaded those two books a week back (Thanks to someone in #c++
on freenode for the reference)
I whole heartedly recommend them! I have no problems with the examples
(g++ on linux) and I have finally grasped some concepts my previous
hackish attempts failed to understand
It *is* heavy going though, but worth the effort (Im wishing I had found
these books some time ago)

--
You cannot have a science without measurement.
-- R. W. Hamming

Dec 24 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Bill Davidson | last post by:
Hi there, Please forgive me for posting this article on multiple groups. Being new in the newsgroups, I was not sure which group would have been appropriate for my question. Sorry. My...
13
by: Derek | last post by:
As I understand it there is a good amount of link compatibility among C compilers. For example, I can compile main.c with GCC and func.c with Sun One and link the objects using either linker (GNU...
0
by: Chris Stephens | last post by:
Low Cost C Compilers ------------------------------------ HI-TECH Software's C compilers are now available to support the ARM, dsPIC, msp430, 8051, PIC 10 to 17, PIC 18 as well as many other...
4
by: nutty | last post by:
Hi, In my code I use two implicit casts in a row. VC compiled it in all version I have. 7.1 and 8.0, but it seems not to be standard. Comeau in strict mode and gcc don't accept it. Of course,...
9
by: Frederick Gotham | last post by:
It seems there's quite a few compilers out there that don't follow the C++ Standard when it comes to default-initialisation. Here's some quick test code if anyone would like to try it out. So far,...
8
by: pransri2006 | last post by:
Hi guys! I think all of u know about the designing of compilers. Can any body tell me about the designing of the compilers. And also tell me the difference between the compilers and Interpreter...
30
by: albert.neu | last post by:
Hello! What is a good compiler to use? (for MS Windows, for Linux) Any recommendations?? What's the point of having a C99 standard, if different compilers still produce differing results? ...
20
by: =?ISO-8859-1?Q?Tom=E1s_=D3_h=C9ilidhe?= | last post by:
There are a few guarantees I exploit in the C Standard. For instance, I might write (unsigned)-1 to get the maximum value for an unsigned integer. Also, I might rely on things such as: ...
14
by: shyam.lingegowda | last post by:
Hi all, If I have two c++ programs and I compile that using two different compilers on Unix. Is it possible for these two exe's to communicate with one another. Since the way the exe's are...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.