Skip to content

Instantly share code, notes, and snippets.

@Longlius
Last active December 14, 2015 03:38
Show Gist options
  • Save Longlius/5022153 to your computer and use it in GitHub Desktop.
Save Longlius/5022153 to your computer and use it in GitHub Desktop.
Demo C program for Wes
#include <stdio.h>
int main(void)
{
int i;
for (i = 0; i < 10; ++i) {
puts("Hello, world!");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment