Writing & compiling a C program under Windows XP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:08:40Zhttp://stackoverflow.com/feeds/question/868759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp6Writing & compiling a C program under Windows XP?JDelage2009-05-15T13:45:19Z2009-05-16T16:08:03Z
<p>Hi,</p>
<p>This is an absolute beginner's question, but per the latest podcast, I understand that no question is too newbie.</p>
<p>I have 0 programming experience and I want to learn C, so I'm starting the K&R book. I am using a Windows XP laptop, and I am planning on using Notepad++ to write, and <strong>Code::Blocks</strong> to compile.</p>
<p>Here's my question: once I have written the "hello world" program in Notepad++, how should I save it, compile it, and run it?</p>
<p>Edit & new question: When I build & run from Code::Blocks, I get the prompt window with the "hello world" message. It stays open until I close it manually. However, when I double click the .exe file, the prompt just flashes and disappears, why is that?</p>
<p>Many thanks,</p>
<p>JD</p>
<p>Edit: I'm going to use Code::Blocks as an IDE, per the recommendations here.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868771#8687710Answer by smok1 for Writing & compiling a C program under Windows XP?smok12009-05-15T13:47:18Z2009-05-15T13:47:18Z<p>Try some simpler compiler, like *nix gcc. Visual Studio C++ puts a lot of MS extensions to code files.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868778#8687786Answer by ChrisF for Writing & compiling a C program under Windows XP?ChrisF2009-05-15T13:48:15Z2009-05-15T13:48:15Z<p>You should be able to write C in Visual Studio. You certainly could in older versions of the IDE. Just create source files with the .c extension.</p>
<p>You should be able to build and run the code from within Visual Studio.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868782#8687827Answer by Ólafur Waage for Writing & compiling a C program under Windows XP?Ólafur Waage2009-05-15T13:48:32Z2009-05-15T13:48:32Z<p>Save it as a .c file. And you can use the <a href="http://www.mingw.org/" rel="nofollow">MinGW compiler</a> to compile the file into an .exe file. But since you have Visual Studio, you should use that compiler.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868796#8687961Answer by Nikolai N Fetissov for Writing & compiling a C program under Windows XP?Nikolai N Fetissov2009-05-15T13:50:57Z2009-05-15T13:50:57Z<p>For just starting I'd recommend creating your project, editing and compiling right in VC.
Then start exploring what commands VC actually runs under its covers (I believe that'd be something like "output" tab there.) You can do all that on command line though Windows is not the programmer-friendliest environment.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868805#8688055Answer by D. Patrick for Writing & compiling a C program under Windows XP?D. Patrick2009-05-15T13:52:23Z2009-05-15T13:52:23Z<p>If you're just learning to program, I wouldn't recommend starting with C. C still has its place today, but there are much easier languages with which to learn basic syntax and technique. As I understand, there aren't that many employed beginner C programmers out there. You can, however, be an employed beginner java, c#, VB, ruby, or python programmer and people will pay you to learn. Then, once you have a solid foundation on structure and technique, you can get closer to the metal with C.</p>
<p>Just my two cents even if it isn't really an answer to your question.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868843#8688432Answer by Hugo for Writing & compiling a C program under Windows XP?Hugo2009-05-15T13:59:10Z2009-05-15T13:59:10Z<p>If you DON'T want to use visual-studio, you might want to try something like <strong>codeblocks</strong> which lets you use the VS compiler... it's much more simple+lightweight if you're just beginning.</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/868956#8689562Answer by Jim for Writing & compiling a C program under Windows XP?Jim2009-05-15T14:18:00Z2009-05-15T14:18:00Z<p>As other posters have pointed out, Visual Studio can be a bit overwhelming to the beginner - lots of options, and a lot of fluff required to get a simple "Hello World" out the door. </p>
<p>I personally recommend Bloodshed's Dev-C++ IDE for beginners. It's not being worked on anymore (so get the stable, not the beta version), but it's very simple to go from typing your first program to compiling and running it. If you stick with Windows, you'll move to Visual Studio eventually, but Dev is a nice east place to start. </p>
<p>You can edit files in Visual Studio, (It's an IDE, an Integrated Development Environment, and is supposed to contain absolutely everything that you need to write a program) but you'll notice that most programmers use external editors like Notepad++, as they offer some nice features that you usually don't get in a built-in IDE. Don't worry about that for the moment, but try out an external editor like n++ when you're more familiar with the rest of the process. </p>
<p>Oh, and C in <em>no way whatsoever</em> can be described as "covering the key principles in a small language". It definitely covers the 'key principles' - it's been used for everything under the sun, but is absolutely huge. Whether it's appropriate for a beginner these days is subject to debate; it'll definitely give you some good experience, but won't be the easiest way of starting. </p>
<p>Edit: CodeBlocks is more modern and still under development, so might be a better place to start than DevC++ <a href="http://en.wikipedia.org/wiki/Codeblocks" rel="nofollow">http://en.wikipedia.org/wiki/Codeblocks</a></p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/869301#8693011Answer by geocoin for Writing & compiling a C program under Windows XP?geocoin2009-05-15T15:19:12Z2009-05-15T15:19:12Z<p>just in case you haven't realised yet, like visual studio, code::blocks also has an editor built in. you don't need to write in notepad++ (unless you actually prefer npp as an editor of course)</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/872308#8723081Answer by behindthefall for Writing & compiling a C program under Windows XP?behindthefall2009-05-16T12:09:26Z2009-05-16T12:16:38Z<p>Here's an opinion from someone who used C for years in biomedical research: image processing, data crunching. IMHO, C is a major intellectual achievement, probably the finest distillation of intent into syntax. I would learn C again now, if I were starting out, even if just for the purpose of learning to think.</p>
<p>That said, I have never even attempted to program in C on MS. (All my work was on Suns and SGIs.) To avoid the overhead mentioned in other answers, I have switched to Python on MS XP/cygwin. However, I miss C's terse, expressive syntax rather often, and I miss mucking about with bits and values as stored in memory. Note that even with Python, the back-end is C, and custom extensions are coded in C. Thus, if I wanted to redo my image processing code for Python, I probably would wind up writing C after all.</p>
<p>Sorry that MS imposes such a burden on writing in about the leanest language ever invented. (BTW, as for editors, my personal choice is vim (as gvim), not IDEs.) (Have you thought of setting up a Linux box? Lots to be said for that these days: UNIX without the cost of workstations.)</p>
http://stackoverflow.com/questions/868759/writing-compiling-a-c-program-under-windows-xp/872709#8727092Answer by MrWiseGuy for Writing & compiling a C program under Windows XP?MrWiseGuy2009-05-16T16:08:03Z2009-05-16T16:08:03Z<p>If you copy the code out of K&R you need to add a system("pause"); before you end main() and make sure you save the file with .c <br/></p>
<p>int main()<br/>
{<br/>
printf("Hello, world\n");<br/></p>
<p>system("pause");<br/>
return 0;<br />
}<br/>
I am also a beginner I hope this helps.<br/></p>