blob: 63ebe3895d2a8fa9fb1235e8625ce59b75fbb1c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/********************************************************
* hello -- program to print out "Hello World". *
* Not an especially earth-shattering program. *
* *
* Author: Steve Oualline *
* *
* Purpose: Demonstration of a simple program *
* *
* Usage: *
* Run the program and the message appears *
********************************************************/
#include <stdio.h>
main()
{
/* Tell the world hello */
(void) printf("Hello World\n");
return (0);
}
|