-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.c
More file actions
34 lines (32 loc) · 833 Bytes
/
hello.c
File metadata and controls
34 lines (32 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* =====================================================================================
*
* Filename: hello.c
*
* Description:
*
* Version: 1.0
* Created: 2012年07月18日 10时45分27秒
* Revision: none
* Compiler: gcc
*
* Author: BurningStyle
*
*
* =====================================================================================
*/
#include <stdlib.h>
#include <stdio.h>
/*
* === FUNCTION ======================================================================
* Name: main
* Description:
* =====================================================================================
*/
int
main ( int argc, char *argv[] )
{
printf("Hello word!");
return 0;
}
/* ---------- end of function main ---------- */