Which compiler for a learner of C?
- From: "pkirk25" <patrick@xxxxxxxxx>
- Date: 27 Sep 2006 15:22:06 -0700
I own a legit copy of Visual C++ 6.0
Its nice but it is 10 years old and aimed at C++.
Downloaded Bloodshed Dev-C++
Very nice but the default auto-indent woupd break my heart as I depend
on indentation. This is how a loop is formatted by default.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int a = 0, b = 7;
for (a = 0; a <= b; ++a)
{
printf("Hello again\n");
}
system("PAUSE");
return 0;
}
That } that fails to align as it closes the "for" loop really puts me
off. If anyone knows how to fix this, this looks a fine compiler. Is
it good in the opinion of more experienced C programmers?
Is Visual C++ Express a good compiler?
Is there another for the Win32 platform that is recommended?
.
- Follow-Ups:
- Re: Which compiler for a learner of C?
- From: Malcolm
- Re: Which compiler for a learner of C?
- From: BRG
- Sticking with Visual C++ Version 6
- From: pkirk25
- Re: Which compiler for a learner of C?
- From: Cong Wang
- Re: Which compiler for a learner of C?
- From: napi
- Re: Which compiler for a learner of C?
- From: Richard Heathfield
- Re: Which compiler for a learner of C?
- From: jacob navia
- Re: Which compiler for a learner of C?
- Prev by Date: Re: C exercises?
- Next by Date: Re: C exercises?
- Previous by thread: eeeeeeee
- Next by thread: Re: Which compiler for a learner of C?
- Index(es):
Relevant Pages
|