Thread: Whats better, C-Free or Dev C++??

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Lurking whiteflags's Avatar
    Join Date
    Apr 2006
    Location
    United States
    Posts
    9,612
    American National Standards Institute.

    > Ive heard that GNU gcc is not [ANSI] compliant, is that true?
    Lies.

    > Can it made to be [ANSI] compliant with just commandline switches?
    There is an ansi switch.
    $ gcc -o foo foo.c -Wall -ansi -pedantic
    That will catch most of the problems that conflict with the default standard GCC compiles under. You can explicitly switch GCC to a different standard by using -std=c99 for instance.
    http://gcc.gnu.org/onlinedocs/gcc/In...l#Invoking-GCC

    > Also Ive heard a lot of people say Anjuta is a really good IDE. Can someone tell me what advantages it has?
    You should read the features page from the Anjuta web page, and make the decision. You can ask for our opinion but it is still good to have an frame of reference.
    Last edited by whiteflags; 07-06-2006 at 10:11 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. free 2d graphics engine for Dev C++?
    By two31d in forum C++ Programming
    Replies: 3
    Last Post: 11-29-2005, 06:48 AM
  2. Replies: 12
    Last Post: 06-24-2005, 04:27 PM
  3. Help needed with backtracking
    By sjalesho in forum C Programming
    Replies: 1
    Last Post: 11-09-2003, 06:28 PM
  4. "if you love someone" :D
    By Carlos in forum A Brief History of Cprogramming.com
    Replies: 12
    Last Post: 10-02-2003, 01:10 AM