cprogramming-languagespascallow-levelhigh-level

Low level capabilities of high level languages


I would like to know some low-level capabilities of high-level languages. Off the top of my head I could point out: -bitwise operations -bit fields -pointer arithmetic -inline assembly -interrupt functions

I would apreciate if you pointed out some, that aren't in my list. It would be nice if C or Pascal had them, but basically any high-level language will do. Thank you.


Solution

  • C does not support inline assembler nor interrupts, all C code implementing them is using non-standard compiler extensions. C++ however, has support for inline assembler through the standard.

    Here are some other important, hardware-related features of C:

    Other important features that C lacks are multi-threading support as part of the language, and memory barrier support. Some C compilers implement memory barriers through the volatile keyword, but there are no guarantees for it to work by any standard.