Monday, January 26, 2015

hello, world

hello, world

I am starting to learn programming in C. If you wanted to say hello, world in C, this is what it might look like.

#include <stdio.h>

int main(void)
{
    printf("hello, world");
}

Well, that's it for this post. I might make more posts with just tidbits of information like this, so be prepared.

No comments:

Post a Comment