What type of programs are best written in C - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T17:11:44Zhttp://stackoverflow.com/feeds/question/435834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c10What type of programs are best written in Cdmanxiii2009-01-12T15:51:14Z2009-01-16T17:54:57Z
<p>Joel and company expound on the virtues of learning C and how the best way to learn a language is to actually write programs using that use it. To that effect, which types of applications are most suitable to the C programming language?</p>
<p>Edit:
I am looking for what C is good at. This likely does not coincide with the best way of learning C.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435841#43584122Answer by ocdecio for What type of programs are best written in Cocdecio2009-01-12T15:53:38Z2009-01-12T16:16:16Z<p>Low level functions such as OS kernel and drivers. For those, C is unbeatable.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435844#4358447Answer by ctacke for What type of programs are best written in Cctacke2009-01-12T15:54:15Z2009-01-12T16:14:45Z<p>Small apps that don't have a UI, especially when you're trying to learn.</p>
<p><strong>Edit:</strong> After thinking a little more on this, I'd add the following: if you already know a higher-level language and you're trying to learn more about C, a good route may be to not create a whole new C app, but instead create a C DLL and add functions to it that you can call from the higher language. In this way you can replace simple functions that your high language already has to ensure that you C function does what it should (gives you pre-built testing), lets you code mostly in what you're familiar with, uses the language in a problem you're already familiar with, and teaches you about interop.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435852#43585222Answer by Paul Tomblin for What type of programs are best written in CPaul Tomblin2009-01-12T15:55:44Z2009-01-12T16:33:32Z<p>Code where you need absolute control over memory management. Code where you need to be utterly in control of speed versus memory trade-offs. Very low-level file manipulation (such as access to the raw devices).</p>
<p>Examples include OS kernel, and embedded apps.</p>
<p>In the late 1980s, I was head of the maintenance team on a C system that was more than a million lines of code. It did database access (Oracle), X Windows graphics, interprocess communications, all sorts of good stuff. It ran on VMS and several varieties of Unix. But if I were to recreate that system today, I sure wouldn't use C, I'd use Java. Others would probably use C#.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435854#4358547Answer by Jimmy for What type of programs are best written in CJimmy2009-01-12T15:56:47Z2009-01-12T15:56:47Z<p>those 100 lines of python code that were accounting for 80% of your execution time.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435856#4358562Answer by Richard Campbell for What type of programs are best written in CRichard Campbell2009-01-12T15:57:06Z2009-01-12T15:57:06Z<p>Also, you might want to look at the following questions:</p>
<p><a href="http://stackoverflow.com/questions/296/should-i-learn-c">Should I learn C?</a><br>
<a href="http://stackoverflow.com/questions/47495/what-language-do-i-use-to-program-behavior-for-electronic-devices">What language do I use to program behavior for electronic devices?</a></p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435867#4358676Answer by Federico Ramponi for What type of programs are best written in CFederico Ramponi2009-01-12T15:59:11Z2009-01-12T15:59:11Z<ul>
<li>Number crunching (for example, libraries to be used at a higher level from some other language like Python).</li>
<li>Embedded systems programming.</li>
</ul>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435883#4358835Answer by Michael Kohne for What type of programs are best written in CMichael Kohne2009-01-12T16:02:30Z2009-01-12T16:02:30Z<p>Anything where you think of using assembly.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435884#4358840Answer by CodeSlave for What type of programs are best written in CCodeSlave2009-01-12T16:02:52Z2009-01-12T18:53:22Z<p>Don't treat C as a beefed up assembler. I've done some serious app's in it when it was the natural language (e.g., the target machine was a Solaris box with X11). </p>
<p>Write something with some meat on it. Write a client server chess program, where the AI is on a server and the UI is displaying in X11; once you've done that you will really know C.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435895#4358951Answer by Don Wakefield for What type of programs are best written in CDon Wakefield2009-01-12T16:07:33Z2009-01-12T16:07:33Z<p>Implicit in your question is the assumption that a 'high-level' language like Python or Perl (or Java or ...) is fast enough, small enough, ... enough for most applications. This is of course true for most apps and some choice X of language. Given that, your language of choice almost <em>certainly</em> has a foreign function interface (FFI). Since you're looking to <em>learn</em> C, create a module in the FFI built in C.</p>
<p>For example, let's assume that your tool of choice is Python. Reimplement a subset of <a href="http://numpy.scipy.org/" rel="nofollow">Numpy</a> in C. Since C is a pretty fast language, and has, in C99, a clear numeric library interface, you'll get the opportunity to experience the power of C in an appropriate setting.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435904#4359040Answer by Robert S. for What type of programs are best written in CRobert S.2009-01-12T16:09:33Z2009-01-12T16:09:33Z<p>ISAPI filters for Internet Information Server.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435910#4359106Answer by sajith for What type of programs are best written in Csajith2009-01-12T16:11:24Z2009-01-12T16:11:24Z<p>A bootloader. Some assembly also required, which is actually very nice..</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435938#43593814Answer by tim for What type of programs are best written in Ctim2009-01-12T16:19:42Z2009-01-12T16:19:42Z<p>You can use C to write anything. It is a very general purpose language. After doing so for a little while you will understand why there are other "higher level" languages available. </p>
<p>"Learn C", by all means, but don't don't stick with it for too long. Other languages are far more productive.</p>
<p>I think the gist of the people who say you need to learn C is so that you understand the relationship between high level code and the machine internals and what exaclty happens with bits, bytes, program execution, etc. </p>
<p>Learn that, and then move on. </p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435952#4359520Answer by Ilya for What type of programs are best written in CIlya 2009-01-12T16:22:04Z2009-01-12T16:22:04Z<p>Before actually write C code, i would suggest first read good C code.<br />
Choose subject you want to concentrate on, basically any application can be written in C, but i assume GUI application will be not your first choice, and find few open source projects to look into. </p>
<p>Not any open source project is best code to look. I assume that after you will select a subject there is a place for another question, ask for best open source project in the field.<br />
Play with it, understand how it's working modify some functionality...<br />
Best way to learn is learn from somebody good. </p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435955#4359550Answer by Cruachan for What type of programs are best written in CCruachan2009-01-12T16:22:42Z2009-01-12T16:22:42Z<p>Photoshop plugin filters. Lots and lots of interesting graphical manipulation you can do with those and you'll need pure C to do it in.</p>
<p>For instance that's a gateway to fractal generation, fourier transforms, fuzzy algorithms etc etc. Really anything that can manipulate image/color data and give interesting results</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435981#4359812Answer by dsimcha for What type of programs are best written in Cdsimcha2009-01-12T16:27:52Z2009-01-12T16:27:52Z<p>Anything where you need a minimum of "magic" and need the computer to do <strong>exactly</strong> what you tell it to, no more and no less. Anything where you don't trust the "magic" of garbage collection to handle your memory because it might not be as efficient as what you can hand-code. Anything where you don't trust the "magic" of built-in arrays, strings, etc. not to waste too much space. Anything where you want to be able to reason about exactly what ASM instructions the compiler will emit for a given piece of code.</p>
<p>In other words, not too much in the real world. Most things would benefit more from higher level abstraction than from this kind of control. However, OS code, device drivers, and a few things that have to be near optimal in <strong>both</strong> space and speed might make sense to write in C. Higher level languages can do pretty well competing with C on speed, but not necessarily on space.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/435982#4359821Answer by theman_on_vista for What type of programs are best written in Ctheman_on_vista2009-01-12T16:28:05Z2009-01-12T16:28:05Z<p>you can write languages in C (python, php,...is ruby?)</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436032#4360321Answer by blabla999 for What type of programs are best written in Cblabla9992009-01-12T16:40:25Z2009-01-12T16:40:25Z<p>Embedded stuff, where memory-usage and cpu-speed matters.
<br>The interrupt handler part of an OS (and maybe two or three more functions in it).</p>
<p>Even if some of you will now start to bash heavily on me now:
<br>I dont think that any decent app should be written in C - it is way too error prone.
(and yes, I do know what I am talking about, having written an awful lot of code in C myself (OSes, compilers, VMs, network protocols, RT-control stuff etc.).</p>
<p>Using a high level language makes you so much more productive. Speed is typically gained by keeping the 10-90 rule in mind: 90% of CPU time is spent in 10% of your code (which you should optimize first).
Also, using the right algorithm might give more performance than optimizing bits in C. And doing things right in C is so much more trouble.</p>
<p>PS: I do really mean what I wrote in the second sentence above; you can write a complete high performance OS in a high level language like Lisp or Smalltalk, with only a few minor parts in C. Think how the 70's Lisp machines would fly on todays hardware...</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436591#4365910Answer by Knuth for What type of programs are best written in CKnuth2009-01-12T19:09:38Z2009-01-12T19:09:38Z<p>I wonder why nobody stated the obvious:</p>
<p>Web applications.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436641#436641-3Answer by T.E.D. for What type of programs are best written in CT.E.D.2009-01-12T19:20:21Z2009-01-12T19:20:21Z<p>The short answer is <em>none</em>. The slightly longer answer would be any time you have a system's programming task, and don't have access to any compiler for a better language.</p>
<p>For system's programming tasks, you are far better served by using something as powerful but safer and less error-prone like Ada. For general purpose OO programming, languages like C++, Java, and Ada again are far better choices. For a lot of specific tasks, like string manipulation or website generation, there are domain-specific languages that will make your job much easier for you.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436652#4366524Answer by RussellH for What type of programs are best written in CRussellH2009-01-12T19:23:03Z2009-01-12T19:23:03Z<p>A lot of people are saying OS kernel and device drivers which are, of course, good applications for C. But C is also useful for writing any performance critical applications that need to use every bit of performance the hardware is capable of.</p>
<p>I'm thinking of applications like database management systems (mySQL, Oracle, SQL Server), web servers (apache, IIS), or even we browsers (look at the way chrome was written).</p>
<p>You can do so many optimizations in C that are just impossible in languages that run in virtual machines like Java or .NET. For instance, databases and servers support many simultaneous users and need to scale very well. A database may need to share data structures between multiple users (threads/processes), but do so in a way that efficiently uses CPU caches. In C, you can use an operating system call to determine the size of the cache, and then align a data structure appropriately to the cache line so that the line does not "ping pong" between caches when multiple threads access adjacent, but unrelated data (so called "false sharing). This is one example. There are many others.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436684#4366841Answer by comingstorm for What type of programs are best written in Ccomingstorm2009-01-12T19:31:35Z2009-01-12T19:31:35Z<p>A few kinds that I can think of:</p>
<ul>
<li>Systems programming that directly uses Unix/Linux or Win32 system calls</li>
<li>Performance-critical code that doesn't have much string manipulation in it (e.g., number crunching)</li>
<li>Embedded programming or other applications that are severely resource-constrained</li>
</ul>
<p>Basically, C gives you portable, efficient access to the native capabilities of the machine; everything else is your responsibility. In particular, string manipulation in C is tedious, error-prone, and generally nasty; the most effective way to do extensive string operations with C may be to use it to implement a language that handles strings better...</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/436993#4369933Answer by Johan for What type of programs are best written in CJohan2009-01-12T21:03:33Z2009-01-12T21:03:33Z<ol>
<li><p>Where you feel the need for 100% control over your program.
This is often the case in lower layer OS stuff like device drivers,
or real embedded devices based on MCU:s etc etc (all this and other is already mentioned above)</p></li>
<li><p>But please note that C is a mature language that has been around for many years
and will be around for many more years,
it has many really good debugging tools and still a huge number off developers that use it.
(It probably has lost a lot to more trendy languages, but it is still huge)
All its strengths and weaknesses are well know, the language will probably not change any more.
So there are not much room for surprises... </p></li>
</ol>
<p>This also means that it would probably be a good choice if you have a application with a long expected life cycle.</p>
<p>/Johan</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/437031#4370310Answer by Nick for What type of programs are best written in CNick2009-01-12T21:13:02Z2009-01-12T21:13:02Z<p>Any place where the underlying libraries are entirely in C is a good candidate for staying in C - openGL, Lua extensions, PHP extensions, old-school windows.h, etc. </p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/437314#4373141Answer by Signal9 for What type of programs are best written in CSignal92009-01-12T22:45:26Z2009-01-12T22:45:26Z<p>examples are: embedded apps, kernel code, drivers, raw sockets. </p>
<p>However if you find yourself more productive in C then go ahead and build whatever you wish. Use the language as a tool to get your problem solved.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/437348#4373480Answer by Mike Dunlavey for What type of programs are best written in CMike Dunlavey2009-01-12T22:54:19Z2009-01-12T22:54:19Z<p>I prefer C for anything like parsing, code generation - anything that doesn't need a lot of data structure (read OOP). It's library footprint is very light, because class libraries are non-existent. I realize I'm unusual in this, but just as lots of things are "considered harmful", I try to have/use as little data structure as possible.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/437501#4375010Answer by Huntrods for What type of programs are best written in CHuntrods2009-01-12T23:42:03Z2009-01-12T23:42:03Z<p>Well, if you want to learn C and have some fun at the same time, might I suggest obtaining NXC and a Lego Mindstorms set? NXC is a C compiler for the Lego Mindstorms.</p>
<p>Another advantage of this approach is that you can compare the effort to program the Mindstorms "brick" with C and then try LEJOS and see how it goes with Java.</p>
<p>All great fun.</p>
<p>Cheers,</p>
<p>-Richard</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/438090#4380900Answer by Norman Ramsey for What type of programs are best written in CNorman Ramsey2009-01-13T05:58:55Z2009-01-13T05:58:55Z<p>Garbage collectors!</p>
<p>Also, simply programs whose primary job is to make operating-system calls. For example, I need to write a short C program called <code>timeout</code> that </p>
<ul>
<li>Takes a command line as argument, with a number of seconds for that command to run</li>
<li>Forks two child processes, one to run the command and one to sleep for N seconds</li>
<li>When the first of the child processes exits, kills the other, then exits</li>
</ul>
<p>The effect will be to run a command with a limit on wall-clock time.</p>
<p>I and others on this forum have tried several different solutions using shells and/or perl. All are convoluted and none quite do the right thing. In C the solution will be easy, because all the OS facilities are right where you can get at them.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/441494#4414940Answer by interstar for What type of programs are best written in Cinterstar2009-01-14T00:46:53Z2009-01-14T00:46:53Z<p>Following on from what someone else said. C seems a good language to implement the language in which you write the rest of your software. </p>
<p>And (mutatis mutandis) the virtual machine which runs the rest of your software. </p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/441521#4415210Answer by Bill K for What type of programs are best written in CBill K2009-01-14T01:01:13Z2009-01-14T01:01:13Z<p>I'd say that with the minuscule runtime environment and it's self-contained nature, you might start by creating some CLI utilities such as grep or tail (or half the commands in Unix). Anything that uses only STDOUT, STDIN and file manipulation is a good candidate.</p>
<p>This isn't exactly answering your question because I wouldn't actually CHOOSE to use C in such an app, but I hope it's answering the question you meant to ask--"what would be a good type of app to use learn C on?"</p>
<p>C isn't actually that bad a language--it's pretty easily to understand your code at an assembly language level which is quite useful, and the language constructs are few, leaving a very sparse language.</p>
<p>To answer your actual question, the very best use of C is the one for which it was created--porting itself (and UNIX) to other CPU architectures. This explains the lack of language features very well; it also explains the existence of Pointers which are really just a construct to make the compiler work less--any code created with pointers could be created without it (just as well optimized), but it becomes much harder to create a compiler to do so.</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/443071#4430710Answer by plan9assembler for What type of programs are best written in Cplan9assembler2009-01-14T14:13:18Z2009-01-14T14:13:18Z<p>c compiler</p>
http://stackoverflow.com/questions/435834/what-type-of-programs-are-best-written-in-c/451359#4513590Answer by goodrone for What type of programs are best written in Cgoodrone2009-01-16T17:54:57Z2009-01-16T17:54:57Z<p>Researches in maths and physics. There are probably two alternatives: C and C++, but such features of the latter as encapsulation and inheritance are not very useful there. One could prefer to use C++ "as a better C" or just stay with C.</p>