hello-world hello-world program This is a README file for my first program on GitHub. The following is code for printing "hello, world!" (without the quotation marks) in C. #inlude <stdio.h> int main (void) { printf ("hello, world!"); return 0; }