C
Introduction

Introduction

Hello, World!

helloworld.c
#include <stdio.h>
int main()
{
    printf("Hello, World!\n");
    return 0;
}
gcc -c helloworld.c
gcc helloworld.o -o helloworld
./helloworld
Hello, World!