Friday, September 17, 2010

Lesson.1 Hello C

This is review of the C programming study that I have learned from university.

I have been learned C++ programming to create the 3D video console game in 2010.

It is time for me to refresh the idea of C++ and achieve dept of understanding.

my goal is find my self actualisation to develop my potential, talent in programming.


/*Hello.c*/


#include

int main(void)

{
printf("Hello, world!\n");
return 0;
}


*key point to use the visual studio express 2008 is

how to execute
how to compile

compile -> F7
excute -> Ctrl + F5

*creating project in empty

visual C++ -> win32-> win32 console application

workspace is box to contain the project

*creating the source code

click Source file folder-> (add) file -> source code.

if extension is saved with .c then it is saved as C programming.

cpp will saved as C++

Introduction
Example Code
short cut key
creating in VC



short cut key

Ctrl + F5

F7

required action by user

execute

compile

No comments:

Post a Comment