C is a foundational systems language known for its performance and low-level control. It is widely used in operating systems, embedded devices, and performance‑critical software.
#include <stdio.h>
int main(void) {
printf("Hello, World!\n");
return 0;
}
Run:
gcc hello.c -o hello
./hello