Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have installed code writer software

I write C Program in this software but I do not know how to run the program in this software
Posted

from

http://apps.microsoft.com/windows/en-us/app/code-writer/5149f454-94a7-40bc-90ef-eafd38355079[^]

Code Writer is a free text and code editor app with active syntax highlighting that updates as you edit documents and has over 20 supported file types


So it looks like its just an editor dude (perhaps someone else knows more)

Why not download and use the free Visual Studio Express, or perhaps http://www.mingw.org/[^]
or

Bryce
 
Share this answer
 
In order to compile/link a C program, you just need a compiler/linker combination. There are a few options out there (gcc from GNU,vc from Microsoft, and others). Programs that have "text highlighting" and other similar syntax and search tools that help a programmer are called Integrated Development Environments (IDEs). These include code blocks, netbeans, and of course, visual studio. If you don't want too much glitter for your coding, you can simply use a text editor that has some syntax highlighting (such as what this tool you're asking about is, or other text editors such as gEdit).

Depending on what you choose to use, the compilation is going to be a bit different. If you use an IDE, you usually just have to push a button to compile, link, and run. If you use a text editor, you have to compile/link outside of the editor (through command line), then run the code through the command line or by double-clicking on it in an explorer window.

Sounds like you just need a starter guide to C (using gcc in this case):
http://pages.cs.wisc.edu/~beechung/ref/gcc-intro.html[^]
http://www.physics.drexel.edu/courses/Comp_Phys/General/C_basics/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900