( STP | 2012. 05. 12., szo – 11:53 )

Hasonló minőségű hello world:


#include "stdio.h"
int main() {
  char s[8] = "Hello world!";
  printf("%s\n", s);
  return 0;
}