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

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