Halo

A magic place for coding

0%

My first blog

Introduction

Say hello World

This is my personal tech blog, where I will introduce some programming knowlegdes.
I have to admit that I am not a proficient or professional programmer. Instead, I am just a novice I suppose. So if there is any technical mistakes or problem, you’re welcomed to comment or send an email to me. Your suggestions or comments will be highly valued.

First programme

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//C version
#include <stdio.h>
int main() {
printf("Hello World!\n");
return 0;
}


//C++ version
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
}

Now you execute the program and you can see the text on your screen. It’s simple but a good begin. Now enjoy coding!

Welcome to my other publishing channels