Archive

Posts Tagged ‘Programming’

How I created my header image (as of March 8, 2007)

Friday, March 9th, 2007 lietk12 2 comments

Editor’s note: This header image is not used in the Comtempt theme (A blue theme), though it may be in other themes.

I used the Grappa white page.

But, after examining the source (of the web page and of my blog), you may notice that the sizes in pixels are different! Read more…

Categories: Uncategorized Tags: , ,

C++ compiler

Saturday, August 19th, 2006 lietk12 Leave a comment

Now you may be wondering, “What does this hello world program look like?”. Read more…

Categories: Uncategorized Tags: ,

Hello World explained (continuation)

Saturday, August 19th, 2006 lietk12 Leave a comment

/*File: helloWorld.cpp

*Author: Lietk12

*/

#include<stdafx.h>

#include<stdio.h>

void main()

{

printf(”Hello, world!”);

}

A header file (.h) is basically a file that defines functions. Read more…

Categories: Uncategorized Tags: ,

What does the “Hello World” program mean??

Sunday, August 13th, 2006 lietk12 Leave a comment

/*File: helloWorld.cpp

*Author: Lietk12

*/

#include<stdafx.h>

#include<stdio.h>

void main()

{

printf(”Hello, world!”);

}

Okay, there’s the program. Read more…

Categories: Uncategorized Tags: ,

Hello world!

Wednesday, August 9th, 2006 lietk12 Leave a comment

This is my first post.

Blah blah blah.

I will write a complete public domain program in C (you know, the programming language?) that displays on the screen in the command prompt, “Hello, world!”. Read more…

Categories: Uncategorized Tags: ,