This week is Computer Science Education Week. As part of their Hour of Code, I will be posting my source code from as far as back as possible.
It’s a bunch of gunk and fudges, so don’t judge me. BTW… everything is BSD licensed.
Hello World on Windows.
#include “stdio.h”
void sayHello()
{
printf (“Hello Stanford ! Welcome back to Win32 API. You have been missed !! \n”);
}
int main()
{
sayHello();
return 0;
}