(PCC)::[simple-how-to-print-hello-world-in-c-language]::[c]
#include <stdio.h> int main() { /* my first program in C */ printf("Hello, World! \n"); return 0; }