Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want a better C. Let me explain:

I do a lot of programming in C, which is required for applications that have real-time needs such as audio programming, robotics, device drivers, etc.

While I love C, one thing that gets on my nerves after having spent a lot of time with Haskell is the lack of a proper type system. That is, as soon as you want to write a more general-purpose function, say something that manipulates a generic pointer, (like say a generic linked list) you have to cast things to void* or whatever, and you loose all type information. It's an all-or-nothing system, which doesn't let you write generic functions without losing all the advantages of type checking.

C++ doesn't solve this. And I don't want to use C++ anyways. I find OO classes and templates to be a headache.

Haskell and its type classes do solve this. You can have semantically useful types, and use type constraints to write functions that operate on classes of types, that don't depend on void.

But the domain I'm working in, I can't use Haskell, because it's not real-time capable--mostly due to garbage collection. GC is needed because it's very difficult to do functional programming, which is allocation-heavy, without automatic memory management. However, there is nothing specifically in the idea of type classes that goes against C's semantics. I want C, but with Haskell's dependable type system, to help me write well-typed systems. However, I really want C: I want to be in control of memory management, I want to know how the data structures are layed out, I want to use (well-typed) pointer arithmetic, I want mutability.

Is there any language like this? If so, why is it not more popular for low-level programming?

Aside: I know there are some small language experiments in this direction, but I'm interested in things that would be really usable in real-world projects. I'm interesting in growing-to-well-developed languages, but not so much "toy" languages.

I should add, I heard of Cyclone, which is interesting, but I couldn't get it to compile for me (Ubuntu) and I haven't heard of any projects actually using it.. any other suggestions in this vein are welcome.

Thanks!

share|improve this question
Have you checked out glib? – SB. Aug 24 '10 at 13:46
4  
Uh, have you EVER used C++? It features many, many generic useful functions like sort that maintain all type data, and aren't object-orientated. Templates have nothing to do with object orientation, although they are a good combination. C++ does not enforce object orientation in any way, and it's perfectly valid to make templated free functions that are generic and maintain all type data. – DeadMG Aug 24 '10 at 13:47
As I said in the question, not interested in C++, thanks. – Steve Aug 24 '10 at 13:48
1  
+1 because I would love an imperative language with a type system half as awesome as Haskell's – delnan Aug 24 '10 at 14:30
1  
"I find OO classes and templates to be a headache." Templates and OOP are powerful instruments in C++, but if you don't like them, then you don't have to use them. – SigTerm Aug 24 '10 at 16:18
show 11 more comments

7 Answers

I don't know much about Haskell, but if you want a strong type system, take a look at Ada. It is heavily used in embedded systems for aerospace applications. The SIGADA moto is "In strong typing we trust." It won't be of much use, however, if you have to do Windows/Linux type device drivers.

A few reasons it is not so popular:

  • verbose syntax -- designed to be read, not written
  • compilers were historically expensive
  • the relationship to DOD and design committees, which programmers seem to knock

I think the truth is that most programmers don't like strong type systems.

share|improve this answer
1  
+1. Compared to C, Ada has much better facilities to exactly specify how things are laid out in memory (by representation clauses). Support for real-time programming is included in the language itself, so that there is no need to resort to external libraries. The GNAT compiler is of high quality, and available for free under GPL. Compared to most (all?) C compilers you will be suprised by the detailed level of error reporting the compiler is capable of providing, partially due to the added verbosity. – Schedler Jan 24 '11 at 14:43
I agree with GNAT, I like it very much, and the GNAT errors are so much more helpful than many of the errors that G++ spews. I use GNAT/Ada for all of my personal and graduate school courses. At work however,... – Dr. Watson Jan 25 '11 at 21:56

I'm not sure what state Cyclone is in, but that provided more safety for standard C. D can be also considered a "better C" to some extent, but its status is not very clear with its split-brain in standard library.

My language of choice as a "better C" is OOC. It's still young, but it's quite interesting. It gives you the OO without C++'s killer complexity. It gives you easy access to C interfaces (you can "cover" C structs and use them normally when calling external libraries / control the memory layout this way). It uses GC by default, but you can turn it off if you really don't want it (but that means you cannot use the standard library collections anymore without leaking).

The other comment mentioned Ada which I forgot about, but that reminded me: there's Oberon, which is supposed to be a safe(-er) language, but that also contains garbage collection mechanisms.

share|improve this answer
OOC is interesting, I'll have a closer look at it, thanks. – Steve Aug 24 '10 at 17:02

You might also want to look at BitC. It’s a serious language and not a toy, but it isn’t ready yet and probably won’t be ready in time to be of any use to you.

Nonetheless, a specific design goal of BitC is to support low-level development in conjunction with a Haskell-style type system. It was originally designed to support development of the Coyotos microkernel. I think that Coyotos was killed off, but BitC is still apparently being developed.

share|improve this answer
My understanding is that BitC was abandoned when the author was hired by Microsoft? Perhaps I'm wrong. It's definitely along the right lines, although I haven't read up on its type system. – Steve Aug 24 '10 at 17:00
3  
Jonathan S. Shapiro has since left Microsoft and announced his intention to resume work on BitC. See: coyotos.org/pipermail/bitc-dev/2010-March/001809.html – Daniel Cassidy Aug 26 '10 at 15:03
Cool, thanks, that's great. – Steve Sep 1 '10 at 19:25

What about Nimrod, Vala languages ?

share|improve this answer

D might offer what you want. It has a very rich type system, but you can still control memory layout if you need to. It has unrestricted pointers like C. It’s garbage collected, but you aren’t forced to use the garbage collector and you can write your own memory management code if you really want.

However, I’m not sure to what extent you can mix the type richness with the low-level approach you want to use.

Let us know if you find something that suits your needs.

share|improve this answer

Since you're not interested in C++, the closest thing I can make to an alternative recommendation is Google's Go language, which though still in relatively early stages is perfectly ready for ordinary development tasks, in my opinion. It purports to be a systems programming language with a focus on usability and concurrency, but it does lack some particularly useful features of C, such as pointer arithmetic, and it is garbage-collected, which goes against one of your requirements.

I do, however, have to make a case for C++. It's got all of the features of C, and, generally speaking, you don't pay for what you don't use. You can write perfectly idiomatic C code and compile it with a C++ compiler with few or no problems. The type safety and genericity of templates alone seem to be enough for your purposes, and there is nothing at all that mandates the use of C++ object-oriented features—or any other C++-specific features—alongside templates. Generic programming is a powerful but fundamentally simple aspect of C++, and if templates give you a headache, then you've probably just gotten off on the wrong foot.

I strongly encourage you to give C++ another chance. It is indeed "a better C"—one of many.

share|improve this answer

Since nobody brought it up yet: I think the ATS language is a very good candidate for a better C! Especially since you enjoy Haskell and thus functional programming with strong types. Note that ATS seems to be specifically designed for systems programming and hard real-time applications as most of it can do without garbage collection.

If you check the shootout you will find that performance is basically on par with C. I think this is quite impressive, since modern c compilers have years and years and years of optimization work behind them while ATS is basically developed by one guy.

To quote the website:

What is ATS?

ATS is a statically typed programming language that unifies implementation with formal specification. It is equipped with a highly expressive type system rooted in the framework Applied Type System, which gives the language its name. In particular, both dependent types and linear types are available in ATS. The current implementation of ATS (ATS/Anairiats) is written in ATS itself. It can be as efficient as C/C++ (see The Computer Language Benchmarks Game for concrete evidence) and supports a variety of programming paradigms that include:

Functional programming. The core of ATS is a functional language based on eager (aka. call-by-value) evaluation, which can also accommodate lazy (aka. call-by-need) evaluation. The availability of linear types in ATS often makes functional programs written in it run not only with surprisingly high efficiency (when compared to C) but also with surprisingly small (memory) footprint (when compared to C as well).

Imperative programming. The novel and unique approach to imperative programming in ATS is firmly rooted in the paradigm of programming with theorem-proving. The type system of ATS allows many features considered dangerous in other languages (e.g., explicit pointer arithmetic and explicit memory allocation/deallocation) to be safely supported in ATS, making ATS a viable programming language for low-level systems programming.

Concurrent programming. ATS, equipped with a multicore-safe implementation of garbage collection, can support multithreaded programming through the use of pthreads. The availability of linear types for tracking and safely manipulating resources provides an effective means to constructing reliable programs that can take advantage of multicore architectures.

Modular programming. The module system of ATS is largely infuenced by that of Modula-3, which is both simple and general as well as effective in supporting large scale programming.

In addition, ATS contains a subsystem ATS/LF that supports a form of (interactive) theorem-proving, where proofs are constructed as total functions. With this component, ATS advocates a programmer-centric approach to program verification that combines programming with theorem-proving in a syntactically intertwined manner. Furthermore, this component can serve as a logical framework for encoding deduction systems and their (meta-)properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.