Hello World in C


SUBMITTED BY: Guest

DATE: Jan. 21, 2014, 10:42 p.m.

FORMAT: Text only

SIZE: 122 Bytes

HITS: 869

  1. //C hello world example
  2. #include <stdio.h>
  3. int main()
  4. {
  5. printf("Hello world\n");
  6. return 0;
  7. }

comments powered by Disqus