Gaming An algorithm within an algorithm

  • Thread starter Thread starter Ikki
  • Start date Start date
  • Views Views 1,411
  • Replies Replies 11

Ikki

GBATemp's grumpy panda.
Member
Joined
Jun 1, 2010
Messages
2,797
Solutions
1
Reaction score
52
Trophies
0
Age
32
Location
Montevideo
XP
304
Country
Uruguay
Sssssoooo

I was looking for a good C/C+/C++ compiler since I want to start putting into action whan I'm learning at school and stuff.

Anyone who knows about it can suggest any to me?

Thanks in advance.
 
Depends on what platform you want to program for and how.

If it's for the PC, every single compiler will give you the exact same end result.

If you prefere to have a nice GUI, use Visual C++ Studio by M$ Boyz.
 
Foxi4 said:
If it's for the PC, every single compiler will give you the exact same end result.
Extremely incorrect, different compilers provide completely different end results. The differences in execution speed, memory usage and size for executables compiled with different compilers is very relevant. Compile a huge project in old and obsolete Dev-C++ and then in VS2010 and you'll notice a huge difference.

Microsoft Visual Studio has the best compiler for Windows. That's it. The application is huge (especially Ultimate) and bloaty, and it has many things that can turn you off. But the compiler beats the fuck out of the competition.
 
I would just stick to vs 6.0
its pretty light weight and fast (compared to 2010 at least)

and there is no "C+" language or compiler
++ is a reference to to c where you can add 1 to a variable, instead of writing it as "i=i+1;" you can write it short as "i++;" which will both do the same thing
so C++ basically means C +1 which in this case would be classes and other data structures
 
giantpune said:
Joe88 said:
so C++ basically means C +1 which in this case would be classes and other data structures

wtf? c++ is definitely referring to a language. http://en.wikipedia.org/wiki/C%2B%2B
your not understanding
the "++" is a reference to the shortcut in C to add 1 to a variable

C++ added classes (as well as a lot of other misc things)
thats why its C++ (C plus classes)

even the that wiki link you posted says that in the end of the first paragraph
 
giantpune said:
Joe88 said:
so C++ basically means C +1 which in this case would be classes and other data structures

wtf? c++ is definitely referring to a language. http://en.wikipedia.org/wiki/C%2B%2B

and as far as a compiler, i would suggest gcc and friends.

You should've read the wikipedia article before posting it!

In the Etymology we can clearly read :
"It stems from C's "++" operator (which increments the value of a variable) and a common naming convention of using "+" to indicate an enhanced computer program."

Also, nobody mentioned Intel C++ compiler (I've never used it)
 
Joe88 said:
and there is no "C+" language or compiler
++ is a reference to to c where you can add 1 to a variable, instead of writing it as "i=i+1;" you can write it short as "i++;" which will both do the same thing
so C++ basically means C +1 which in this case would be classes and other data structures

I was kinda derpy when I wrote that. I probably meant C#.


I guess I'll go for VS. Maybe try the others.
 
if you want C# alo then go with at least VS 2005
2008 seems to be the favorite though
 
Joe88 said:
if you want C# alo then go with at least VS 2005
2008 seems to be the favorite though
I'm not looking for any specific variation of C, just something that has the functions C has.

I'm installing 6.0 as you suggested before, thanks.
 
Joe88 said:
giantpune said:
Joe88 said:
so C++ basically means C +1 which in this case would be classes and other data structures

wtf? c++ is definitely referring to a language. http://en.wikipedia.org/wiki/C%2B%2B
your not understanding
the "++" is a reference to the shortcut in C to add 1 to a variable

C++ added classes (as well as a lot of other misc things)
thats why its C++ (C plus classes)

even the that wiki link you posted says that in the end of the first paragraph
same goes for the c#
where if you divide the "#" 2 times you have 4 "+"

bit off topic i guess?

visual c++
 
Ikki said:
Joe88 said:
if you want C# alo then go with at least VS 2005
2008 seems to be the favorite though
I'm not looking for any specific variation of C, just something that has the functions C has.

I'm installing 6.0 as you suggested before, thanks.
make sure to also download and install sp6 for it or else it will crash when trying to compile on vista and above
 

Site & Scene News

Popular threads in this forum