summaryrefslogtreecommitdiffstats
path: root/1/1.c
blob: 5cf53fd76c70362f2eeca5806afebb8b19ee9d46 (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

/* Prints the famous "hello, world" string */

int main(int argc, char *argv[]) {
  printf("hello, world\n");
  return 0;
}