Jump to content

Yes, btw those are for C++ not for C :)

 

While C++ is not C, most C code should run in a C++ program...in some respects C++ can teach you a bit better in that it enforces certain rules that C normally doesn't (like converting type int to float...float f = i; for c and float f = (float)i; for C++...while both work in C the C++ one is in theory more informative).

 

Anyways it can be good though for just plain C compilers though.  For this I would recommend gcc.  There is also another thread where people talked about it (http://linustechtips.com/main/topic/98288-would-visual-studio-be-good-for-c-programming/)

You could also try VS express for C++ (Again most C code will be compilable in C++)

Finally you could also Eclipse (but it requires a compiler) or Netbeans (not sure if it comes with a compiler) if you don't like using Visual Studios

0b10111010 10101101 11110000 00001101

Link to post
Share on other sites

I would suggest looking at MinGW if you're used to a linux environment and working in Sublime Text (awesome choice of editor btw).

 

http://www.mingw.org/

 

I choosed Sublime Text, since I already use it to program in PHP, HTML and CSS. And I like the work environment.

Link to post
Share on other sites

People forget that C++ is a direct extension of C, also I only generally recommend the GCC compilers.

Arch Linux on Samsung 840 EVO 120GB: Startup finished in 1.334s (kernel) + 224ms (userspace) = 1.559s | U mad windoze..?

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×