473,804 Members | 3,562 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

A good compiler please....

Can anyone suggest me a good, small, easy to use compiler which
follows ANSI C standards?

I use TurboC for the sole reason that I am quite used to it. It does
not follow some of the ANSI C standards.

May 31 '07
20 1586
On Jun 1, 4:32 am, Jack Klein <jackkl...@spam cop.netwrote:
Anyone who makes a living programming in C who does not use alint, or
one of the more advanced and really expensive static analysis tools on
the market, only thinks he/she is a professional programmer.
I have to say I disagree with this. I think lint really blows :(

My compiler is already extremely picky with -W -ansi -pedantic, but
with lint you get screen after screen of spurious warnings even for a
100-line toy program. Sorting out all the cruft from the lint output
for a production-sized program would be an inconceivable burden.
--
JackKlein
Home:http://JK-Technology.Com
FAQs for
comp.lang.chttp ://c-faq.com/
comp.lang.c++http://www.parashift.com/c++-faq-lite/
alt.comp.lang.l earn.c-c++http://www.club.cc.cmu.edu/~ajo/docs/FAQ-acllc.html

Jun 1 '07 #11
On May 31, 2:36 pm, Nikhil Bokare <nbok...@gmail. comwrote:
Can anyone suggest me a good, small, easy to use compiler which
follows ANSI C standards?

I use TurboC for the sole reason that I am quite used to it. It does
not follow some of the ANSI C standards.
I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
http://prokutfaq.byethost15.com/FreeCompilers

-Sharath

Jun 1 '07 #12
On Jun 1, 2:08 pm, Sharath <avshar...@gmai l.comwrote:
On May 31, 2:36 pm, Nikhil Bokare <nbok...@gmail. comwrote:
Can anyone suggest me a good, small, easy to use compiler which
follows ANSI C standards?
I use TurboC for the sole reason that I am quite used to it. It does
not follow some of the ANSI C standards.

I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
I mean Dev C++ IDE with MinGW(gcc) compiler. I got confused with
Cygwin and MinGW, anyway both of them are configurable with Dev C++.

Jun 1 '07 #13
Sharath wrote:
On May 31, 2:36 pm, Nikhil Bokare <nbok...@gmail. comwrote:
>Can anyone suggest me a good, small, easy to use compiler which
follows ANSI C standards?

I use TurboC for the sole reason that I am quite used to it. It does
not follow some of the ANSI C standards.

I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
http://prokutfaq.byethost15.com/FreeCompilers

-Sharath
The original poster was asking for a C ide, not a C++ IDE

Jun 1 '07 #14
"jacob navia" writes:
Sharath wrote:
>On May 31, 2:36 pm, Nikhil Bokare <nbok...@gmail. comwrote:
>>Can anyone suggest me a good, small, easy to use compiler which
follows ANSI C standards?

I use TurboC for the sole reason that I am quite used to it. It does
not follow some of the ANSI C standards.

I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
http://prokutfaq.byethost15.com/FreeCompilers
The original poster was asking for a C ide, not a C++ IDE
Then for DevC the OP must type a file name of the form xxx.c when he creates
a new ffile. Appending ".c" makes it a C compiler.
Jun 1 '07 #15
Fr************@ googlemail.com wrote:
Jack Klein <jackkl...@spam cop.netwrote:
>Anyone who makes a living programming in C who does not use alint,
or one of the more advanced and really expensive static analysis
tools on the market, only thinks he/she is a professional
programmer.

I have to say I disagree with this. I think lint really blows :(

My compiler is already extremely picky with -W -ansi -pedantic,
but with lint you get screen after screen of spurious warnings
even for a 100-line toy program. Sorting out all the cruft from
the lint output for a production-sized program would be an
inconceivable burden.
What happened to -Wall, not to mention some others.

--
<http://www.cs.auckland .ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfoc us.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net
--
Posted via a free Usenet account from http://www.teranews.com

Jun 1 '07 #16
On Jun 1, 5:43 pm, jacob navia <j...@jacob.rem comp.frwrote:
Sharath wrote:
I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
http://prokutfaq.byethost15.com/FreeCompilers

The original poster was asking for a C ide, not a C++ IDE
No. He asked for a C compiler, not IDE. I suggested
Dev C++ IDE with MinGW compiler(which is a gcc port to
Windows and has both C and C++ compilers). And Dev C++
is an IDE for both C and C++.

-Sharath

Jun 1 '07 #17
Sharath <av*******@gmai l.comwrites:
On Jun 1, 5:43 pm, jacob navia <j...@jacob.rem comp.frwrote:
>Sharath wrote:
I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
http://prokutfaq.byethost15.com/FreeCompilers

The original poster was asking for a C ide, not a C++ IDE

No. He asked for a C compiler, not IDE. I suggested
Dev C++ IDE with MinGW compiler(which is a gcc port to
Windows and has both C and C++ compilers). And Dev C++
is an IDE for both C and C++.

-Sharath
He asked for "easy to use" and compared with turbo C which kind of hints
at an IDE too. You could do a lot worse than Eclipse with the CDT plugin
for a C IDE which in turn uses gcc as a compiler backend. It has very
good Intellisense like functionality and code cross referencing.

Ideal for a beginner.

Eclipse "know how" is never a bad thing to have. Yes, its a bit on the
"heavy" side, but all (spit) Java apps are ...
Jun 1 '07 #18
Fr************@ googlemail.com wrote:
On Jun 1, 4:32 am, Jack Klein <jackkl...@spam cop.netwrote:
>Anyone who makes a living programming in C who does not use alint, or
one of the more advanced and really expensive static analysis tools on
the market, only thinks he/she is a professional programmer.

I have to say I disagree with this. I think lint really blows :(

My compiler is already extremely picky with -W -ansi -pedantic, but
with lint you get screen after screen of spurious warnings even for a
100-line toy program. Sorting out all the cruft from the lint output
for a production-sized program would be an inconceivable burden.
I don't get screen after screen with lint warnings....

If Sun can keep a kernel lint clean, then you can do the same:

19. You have the following additional responsibilitie s when integrating
changes to
the kernel:

o Your changes must not introduce any lint errors. See tips on keeping
the kernel lint clean at /shared/ON/general_docs/lint_tips.txt.

o For the kernel, changes must conform to the C coding style.

http://www.opensolaris.org/os/projec...lden_rules.txt

--
Tor <torust [at] online [dot] no>
Jun 1 '07 #19
On Jun 1, 7:46 pm, Sharath <avshar...@gmai l.comwrote:
On Jun 1, 5:43 pm, jacob navia <j...@jacob.rem comp.frwrote:
Sharath wrote:
I think Dev C++ IDE with Cygwin(gcc) compiler would fit your
requirement.
You can find link to this and other compilers at:
>http://prokutfaq.byethost15.com/FreeCompilers
The original poster was asking for a C ide, not a C++ IDE

No. He asked for a C compiler, not IDE. I suggested
Dev C++ IDE with MinGW compiler(which is a gcc port to
Windows and has both C and C++ compilers). And Dev C++
is an IDE for both C and C++.

-Sharath
Thanks for all the help.
I would also like to have an IDE.
But the basic requirement is it should work perfectly according to
ANSI standards in WindowsXP environtment.

Jun 3 '07 #20

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

Similar topics

1
13285
by: lovens weche | last post by:
Is there a good editor that can be used with a 32 bit compiler under the MS-Dos platform? I used to use the Watcom C++ 11 compiler but the editor that came with it (VI if I remeber) was not that great, in fact it was horrible. I'm searching for a Borland C++ style editor and a good C++ 32 bit compiler. Doesn't really matter if the compiler doesn't optimize the code. Thanx in advance... Lovens
72
5905
by: E. Robert Tisdale | last post by:
What makes a good C/C++ programmer? Would you be surprised if I told you that it has almost nothing to do with your knowledge of C or C++? There isn't much difference in productivity, for example, between a C/C++ programmers with a few weeks of experience and a C/C++ programmer with years of experience. You don't really need to understand the subtle details or use the obscure features of either language
39
2867
by: Suresh | last post by:
Hi, I am new to C and curious to know some basic questions about C. Why C is good? In what way its better than any other languages? If it is no longer a choice of programming language...why people still study it? And also its not an OO language either...is there any advantages in being not an OO language? I know one reason is that, IT started with C and so they are still using
3
1954
by: happy | last post by:
I am searching over the net for a Good C compiler that has good editor .. Tc 2.01 has bad editor . please advice me with aweb site for downloading the godd Editor C compiler NOT C++. Thanks
9
3033
by: myhotline | last post by:
Hi all, After googling i came across Pelles C, is it a good C compiler over Windows( I am using Windows Xp )...Though Pelles C website says its a C99-compliant compiler, even though i would like somebody to tell me abnout this C99-COmpliance? Are there any other good C99-compliant comilers available for windows....please do let me know.... Any cooperation at earliest will be highly appreciated... REgards -Ahmed
45
2424
by: Brett | last post by:
If I do this without declaring a corresponding field, is it considered bad design? What are the advantages or disadvantages to either method? Notice there is not set. public string URL { get { return "www.somewhere.com/test.aspx"; }
5
1662
by: tthunder | last post by:
Hi @all, I am looking for a good (compiler-independent) way to generate meaningful error messages, if specific (unintended) templates are instantiated. e.g. ------------
159
7135
by: bernard | last post by:
howdy! please recommend a good c compiler. - should be small - should be fast - should come with a good ide - should be inexpensive i am using windows os.
23
3153
by: tonytech08 | last post by:
What I like about the C++ object model: that the data portion of the class IS the object (dereferencing an object gets you the data of a POD object). What I don't like about the C++ object model: that most OO features are not available for class object design without loss of POD-ness. So, I'm more than leaning toward "bad" because of the limitations and
0
10580
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10335
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10323
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9157
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7621
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6854
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5652
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.