C on Visual Studio - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:34:31Zhttp://stackoverflow.com/feeds/question/28605http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28605/c-on-visual-studio2C on Visual StudioDinah2008-08-26T16:59:00Z2009-06-06T13:27:52Z
<p>I'm trying to learn C. As a C# developer, my IDE is Visual Studio. I've heard this is a good environment for C/C++ development. However, it seems no matter what little thing I try to do, intuition fails me. Can someone give good resources for how to either:</p>
<ul>
<li>learn the ins and out of C in Visual Studio</li>
<li>recommend a better C IDE + compiler</li>
</ul>
<p><hr /></p>
<p><strong>Edit:</strong> See also: <a href="http://stackoverflow.com/questions/951516/a-good-c-ide">http://stackoverflow.com/questions/951516/a-good-c-ide</a></p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28617#286170Answer by Konrad Rudolph for C on Visual StudioKonrad Rudolph2008-08-26T17:03:36Z2008-08-26T17:10:24Z<p>Some people say that a smaller IDE is better for learning. Take a look at <a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a>. It's generally true that beginning C in an IDE is hard because not many books explain enough to control the IDE. Perhaps starting in a console and a basic text editor with syntax highlighting would be better – at least under Linux. Since Windows' console is far from great, I'd not recommend using it.</p>
<p>/EDIT: Dev-C++ used to be the best freely available IDE for Windows. However, it's development has been discontinued years ago and the most recent version unfortunately is full of bugs.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28618#286182Answer by sparkes for C on Visual Studiosparkes2008-08-26T17:03:41Z2008-08-26T17:03:41Z<p>Answering the purely subject question "recommend me a better C IDE and compiler" I find <a href="http://www.codeblocks.org/" rel="nofollow">Ming32w and Code::blocks (now with combined installer)</a> very useful on windows but YMMV as you are obviously used to the MS IDE and are just struggling with C.</p>
<p>May I suggest you concentrate on console applications to get a feel for the language first before you attempt to tie it together with a windows UI which in my experience is the hardest bit of windows development.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28619#286191Answer by mmattax for C on Visual Studiommattax2008-08-26T17:03:48Z2008-08-26T17:03:48Z<p>Bloodshed Dev-C++ is the best windows C/C++ IDE IMO: <a href="http://www.bloodshed.net/" rel="nofollow">http://www.bloodshed.net/</a>
It uses the GNU compiler set and is free as in beer.</p>
<p>EDIT: the download page for the IDE is here: <a href="http://www.bloodshed.net/dev/devcpp.html" rel="nofollow">http://www.bloodshed.net/dev/devcpp.html</a></p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28621#286215Answer by Adam Davis for C on Visual StudioAdam Davis2008-08-26T17:04:10Z2009-02-11T13:01:41Z<p>Simple and sweet: Console applications (basic C programs using printf and such) are easily and cheaply done with the Tiny C Compiler - a no frills, no gui, complete C complier.</p>
<p><a href="http://bellard.org/tcc/" rel="nofollow">http://bellard.org/tcc/</a></p>
<p>However, C development is relatively simple on Visual Studio as well. The following instructions will set Visual C++ up as a good C compiler, and it will produce console applications at first, and yo can move up into more complex windows apps as you go.</p>
<ol>
<li>Get the Visual Studio C++ edition (express is fine)</li>
<li>Start a new project - disable pre-compiled headers (maybe the wizard will let you do this, maybe you'll have to change the compiler settings once inside the project)</li>
<li>Delete everything inside the project.</li>
<li>Create a new "example.c" file with the hello world example</li>
<li>Compile and away you go.</li>
</ol>
<p>Alternately, get a linux virtual machine, or Cygwin. But as you already have Visual Studio, you might as well stick with what you know.</p>
<p>As an aside, this isn't Atwood learning C finally, is it? No ALTs! ;-D</p>
<p>-Adam</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28627#286271Answer by Rob Cooper for C on Visual StudioRob Cooper2008-08-26T17:05:35Z2008-08-26T17:05:35Z<p><a href="http://xoax.net/comp/cpp/console/Lesson0.php" rel="nofollow">http://xoax.net/comp/cpp/console/Lesson0.php</a></p>
<p>Any use?</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28630#286300Answer by Konrad Rudolph for C on Visual StudioKonrad Rudolph2008-08-26T17:07:22Z2008-08-26T17:07:22Z<p>On an unrelated note: What do you really want to learn? C as you wrote in the title or C++? Don't make the mistake of thinking they're (almost) the same – they are not. If you want to write one of the two, I'd strongly advise against C and for C++. Stroustrup (the inventor of C++) has an insteresting argument <a href="http://www.research.att.com/~bs/new_learning.pdf" rel="nofollow">on his site</a>.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28634#286342Answer by Antonio Haley for C on Visual StudioAntonio Haley2008-08-26T17:09:02Z2008-08-26T17:16:56Z<p>The problem with learning C within Visual Studio is that you are compiling C using the Visual Studio C++ compiler. You might want to try learning C using the GNU <a href="http://gcc.gnu.org/" rel="nofollow">GCC</a> compiler from within the <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> environment in Windows.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28661#286613Answer by codeLes for C on Visual StudiocodeLes2008-08-26T17:17:26Z2008-08-26T17:17:26Z<p>As already said, you should check out the VS.net C++ edition, but if you'd like to try something else Eclipse has a C++ edition. You can get more info from <a href="http://eclipse.org" rel="nofollow">http://eclipse.org</a> or check out the distro at <a href="http://www.easyeclipse.org/site/distributions/cplusplus.html" rel="nofollow">http://www.easyeclipse.org/site/distributions/cplusplus.html</a></p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28672#286722Answer by mmattax for C on Visual Studiommattax2008-08-26T17:22:06Z2008-08-26T17:22:06Z<pre>
The problem with learning C within Visual Studio is that you are compiling C
using the Visual Studio C++ compiler. You might want to try learning C using
the GNU GCC compiler from within the Cygwin environment in Windows.
</pre>
<p>This is a legitimate response, I posted an IDE that uses the GNU compilers, so why has he been down modded?</p>
<p>This is the type of thing that will make me <strong>not use</strong> SO, why down mod someone just because they are recommending a different compiler, and IMHO, a better one then Microsoft's?</p>
<p>get real people, and @Antonio Haley I gave you +1</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/28689#286892Answer by Antonio Haley for C on Visual StudioAntonio Haley2008-08-26T17:35:45Z2008-08-26T17:35:45Z<p>There's a very good reason to learn C and C++. The reason is that there's a lot of C and C++ code out there that are performing very real and important tasks. Someone who considers themselves a programmer and a learner(doubtful that you can separate the two) can learn a lot from these lines of code.</p>
<p>You can learn a lot from each language by studying the other, but if you really want to grok C it's a lot easier to separate yourself from anything C++ for a while. Visual C++ is great but GCC is a great way to thrust yourself into vanilla ANSI C without having to mentally sidestep any C++.</p>
<p>@mmattax thanks!</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/535722#5357220Answer by Twist for C on Visual StudioTwist2009-02-11T07:03:53Z2009-02-11T07:03:53Z<p>C in Visual Studio is fine, just use the command line compiler that is included in the Pro edition. Yes its the C++ compiler but treats all files ending .c as C . You can even force it to treat ALL files as C with a switch. The VS documentation has entries on it, just search the index for Visual C.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/951665#9516650Answer by James for C on Visual StudioJames2009-06-04T16:30:41Z2009-06-04T16:30:41Z<p>Does VS produce "managed" code that requires the .Net framework or will it compile to machine code for a given architecture. Forgive me if the question does not make sense.</p>
http://stackoverflow.com/questions/28605/c-on-visual-studio/959669#9596691Answer by devdimi for C on Visual Studiodevdimi2009-06-06T13:27:52Z2009-06-06T13:27:52Z<p>Visual Studio is one of the best IDEs for C/C++.
I don't think it is complicated and hard to use - if you have questions about it - ask them.
Some other compilers/IDEs are fine too, but if already have Visual Studio and have used it - why not stick to it?</p>