show/hide this revision's text 2 added 177 characters in body

Lots of good answers here, but there aren't very many good examples of why it's needed. ... Or why C is sometimes called "Portable Assembly Language."

On the lowest level of abstraction on the machine, there are a large number of hardware functions that are accessed through memory ranges. These memory addresses are often quite standardized with various types of hardware.

For example, when an x86 computer first starts up and BIOS has loaded and started the boot sector, the CPU is in a mode called "16-bit Real Mode" for memory addressing. To access hardware peripherals, there are a few methods, including memory regions and the IN and OUT assembly instructions. Video is accessible at the memory address range 0xA0000-0xBFFFF. Writing to this memory location will draw characters to the screen. Writing to certain regions above 0xC0000 manipulates video BIOS registers, which can, for example, change video modes.

C was initially created to port UNIX to the PDP-11, which uses a memory-mapped I/O scheme similar to the x86 today. UNIX would have never run on the PDP-11 without pointers.

Languages like F#, C#, Ruby, Python, Lua, etc. can't do that without modifying the core language. C and C++ can:

/* Assuming 16-bit DOS environment, 80x25 character video mode. */
char* video = 0xA0000;
video[1] = 'H';
video[3] = 'e';
video[5] = 'l';
video[7] = 'l';
video[9] = 'o'; /* prints "Hello" in the top-left corner of the screen.
show/hide this revision's text 1

Lots of good answers here, but there aren't very many good examples of why it's needed. ... Or why C is sometimes called "Portable Assembly Language."

On the lowest level of abstraction on the machine, there are a large number of hardware functions that are accessed through memory ranges. These memory addresses are often quite standardized with various types of hardware.

For example, when an x86 computer first starts up and BIOS has loaded and started the boot sector, the CPU is in a mode called "16-bit Real Mode" for memory addressing. To access hardware peripherals, there are a few methods, including memory regions and the IN and OUT assembly instructions. Video is accessible at the memory address range 0xA0000-0xBFFFF. Writing to this memory location will draw characters to the screen. Writing to certain regions above 0xC0000 manipulates video BIOS registers, which can, for example, change video modes.

Languages like F#, C#, Ruby, Python, Lua, etc. can't do that without modifying the core language. C and C++ can:

/* Assuming 16-bit DOS environment, 80x25 character video mode. */
char* video = 0xA0000;
video[1] = 'H';
video[3] = 'e';
video[5] = 'l';
video[7] = 'l';
video[9] = 'o'; /* prints "Hello" in the top-left corner of the screen.