AboutBlogContact
TechnologyDecember 14, 1989 2 min read 130Updated: June 22, 2026

The C Programming Language (ANSI C): Standardizing the Wild West

AunimedaAunimeda
📋 Table of Contents

It’s 1989, and if you’ve been writing C for as long as I have, you know the pain of the "K&R" days. Don’t get me wrong, Kernighan and Ritchie’s book was our bible, but as every hardware vendor started rolling out their own C compilers, things got… messy. You’d write a perfectly good routine on a VAX, move it to a PC or a Sun workstation, and suddenly the compiler is screaming about function prototypes or how you’re handling pointers.

The Era of Function Prototypes

The biggest win in this new ANSI standard (which many are calling C89) is the formalization of function prototypes. In the old days, you could call a function with the wrong number of arguments, and the compiler would just shrug its shoulders and let you crash at runtime. Now, we can actually tell the compiler what to expect.

/* The New Way: Prototypes */
int calculate_total(int items, float price);

int main() {
    /* The compiler will actually catch this now! */
    // int total = calculate_total(5); // Error: too few arguments
    return 0;
}

It feels like the language is finally growing up. We’re also getting the void * type, which is a godsend for generic memory handling, and the const qualifier, which might actually help the optimizer do its job for once.

Why It Matters

Standardization means portability. For those of us trying to build tools that last, not being tethered to a specific vendor's quirks is everything. We’re seeing more "Write once, compile anywhere" (well, almost) becoming a reality. The "Wild West" of C is being fenced in, but in a way that lets us build bigger, more reliable structures.

The Horizon

As we look toward the 90s, C is clearly the dominant force. With a standard in place, I expect to see even more sophisticated libraries and operating systems built on this foundation. Some people are talking about "C with Classes" (C++), but for my money, a solid, standardized C is where the real work gets done. I'll be porting my old libraries to C89 over the holiday break-it’s going to be a long winter.

Read Also

C++0x: The Long Road to C++11aunimeda
Technology

C++0x: The Long Road to C++11

The C++ committee is working on 'C++0x.' With features like auto, lambda expressions, and rvalue references, it's a massive update to a veteran language.

Second Life: The First Real Metaverse?aunimeda
Technology

Second Life: The First Real Metaverse?

Linden Lab's Second Life is more than a game; it's a platform for a digital society. But can we really live in a 3D world?

The Millennium Bug (Y2K): The World's Biggest Refactoraunimeda
Technology

The Millennium Bug (Y2K): The World's Biggest Refactor

As the clock ticks toward midnight on December 31st, 1999, the tech world is in a collective panic. Is the 'Y2K bug' a real threat, or just the result of decades of lazy coding?

Need IT development for your business?

We build websites, mobile apps and AI solutions. Free consultation.

Get Consultation All articles