C is a Programming Language. It was created in the 1970s by Dennis Ritchie.

The famous “hello world” program in C:

int main(){
    printf("Hello World!");

    return 0;
}