473,398 Members | 2,335 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,398 software developers and data experts.

The better ANSI c++ compiler for me ?

Howdy code writers et al ..

[note: using WinME OS ]

I want to get into my C++ programming and need helpful pointer to the
best free ansi c++ complier for me to use for a few weeks to pick up
some first / second base skills+

I'm a sucker for a simple interface
and want to hang as close as i can to the format the best of the best
use .

The links i'm finding aren't telling me what i want to know and i sure
could use some insightful advice ..

My natural tendancies got me to the free country website and its links
... i went for the microsoft visual c++ offerings only to find they
wont run on my WinME OS .

Fire away I'm all ears for this ..
Jul 23 '05 #1
5 1429
goodfella wrote:
Howdy code writers et al ..

[note: using WinME OS ]

I want to get into my C++ programming and need helpful pointer to the
best free ansi c++ complier for me to use for a few weeks to pick up
some first / second base skills+

I'm a sucker for a simple interface
and want to hang as close as i can to the format the best of the best
use .

The links i'm finding aren't telling me what i want to know and i sure
could use some insightful advice ..

My natural tendancies got me to the free country website and its links
.. i went for the microsoft visual c++ offerings only to find they
wont run on my WinME OS .

Fire away I'm all ears for this ..


I prefer using g++ from the GNU project. It has everything I need for
private coding sessions. There is a Win32 port called Minimalist GNU for
Win32, which acts also as the compiler backend for Bloodshed's popular
Dev-C++ IDE (which was ironically written in Object Pascal).
Try www.mingw.org for the bare command line compiler and libraries, and
www.bloodshed.net for the IDE.

--
Matthias Kaeppler
Jul 23 '05 #2
goodfella wrote:
Howdy code writers et al ..

[note: using WinME OS ]

I want to get into my C++ programming and need helpful pointer to the
best free ansi c++ complier for me to use for a few weeks to pick up
some first / second base skills+

I'm a sucker for a simple interface
and want to hang as close as i can to the format the best of the best
use .

The links i'm finding aren't telling me what i want to know and i sure
could use some insightful advice ..

My natural tendancies got me to the free country website and its links
.. i went for the microsoft visual c++ offerings only to find they
wont run on my WinME OS .

Fire away I'm all ears for this ..


Unfortunately there is no "best" answer anybody can give you, as it
depends highly on what you want to do, what your level of experience is,
etc. However, if you are just looking for someone to tell you what to
do so that you have a starting point then here is my advice -- go to the
following URL and read through their tutorials for downloading and
installing jGRASP. It is an IDE (Integrated Development Environment,
i.e. a text editor with the ability to invoke your compiler and other
handy tools) used by a lot of schools for introductory programming classes.

http://www.eng.auburn.edu/department...esearch/grasp/

After you've learned C++ and a bit more about exactly what you want to
do, you can make a more informed decision about what set of tools you
want to use. It is my experience that the majority of people use Visual
C++ for Windows development and g++ with Emacs or Vi for Unix development.
Jul 23 '05 #3
goodfella wrote:
Howdy code writers et al ..

[note: using WinME OS ]

I want to get into my C++ programming and need helpful pointer to the
best free ansi c++ complier for me to use for a few weeks to pick up
some first / second base skills+

I'm a sucker for a simple interface
and want to hang as close as i can to the format the best of the best
use .

The links i'm finding aren't telling me what i want to know and i sure
could use some insightful advice ..

My natural tendancies got me to the free country website and its links
.. i went for the microsoft visual c++ offerings only to find they
wont run on my WinME OS .

Fire away I'm all ears for this ..

You may check this:

http://www23.brinkster.com/noicys/learningcpp.htm


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #4

"goodfella" <nz*******@hotmail.com> wrote in message
news:cu********************************@4ax.com...
I want to get into my C++ programming and need helpful pointer to the
best free ansi c++ complier for me to use for a few weeks to pick up
some first / second base skills+


www.digitalmars.com free C, C++ and D compilers
Jul 23 '05 #5
Download the latest Beta version (currently, 4.9.9.2).
--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #6

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

Similar topics

5
by: Acacia | last post by:
a) Does the C++ language never change? I was recommended to upgrade my MSVC v1.5 to a newer compiler - yet I thought that ANSI C++ was a standardised language and never changed - so why would i...
100
by: Roose | last post by:
Just to make a tangential point here, in case anyone new to C doesn't understand what all these flame wars are about. Shorthand title: "My boss would fire me if I wrote 100% ANSI C code" We...
19
by: Geetesh | last post by:
Recently i saw a code in which there was a structer defination similar as bellow: struct foo { int dummy1; int dummy2; int last }; In application the above array is always allocated at...
7
by: Paul Connolly | last post by:
char *s = "Hello"; s = 'J'; puts(s); might print "Jello" in a pre-ANSI compiler - is the behaviour of this program undefined in any pre-ANSI compiler - or would it always have printed "Jello"...
127
by: bz800k | last post by:
Hi Does this code satisfy ANSI C syntax ? void function(void) { int a = 2; a = ({int c; c = a + 2;}); /* <<-- here !! */ printf("a=%d\n", a);
204
by: Masood | last post by:
I know that this topic may inflame the "C language Taleban", but is there any prospect of some of the neat features of C++ getting incorporated in C? No I am not talking out the OO stuff. I am...
10
by: Billy Bong | last post by:
Is the following program considered ANSI C? #include <foo/foo_bar.h/* has prototype void bar(void) */ int main(void) { bar(); return 0; } Thanks
6
by: Peng Yu | last post by:
Hi, ANSI and GNU C are different in some delicate aspects (I'm not sure about C++). For example, M_PI is not in ANSI C but in GNU C. Of course, to make my program most portable, I should go...
8
by: vaib | last post by:
hi all , It really seems that C never ceases to amaze . All this time i've been doing C and i thought i was quite adept at it but i was wrong . So without wasting any more time , here's the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.