blob: 9806f68356d7b75cab6cbbc89409ea508faafed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/******************************************************************
*
* Purpose: Show the basic structure of a C program
* Author: M J Leslie
* Date: 03-Feb-94
*
******************************************************************/
#include <stdio.h>
main()
{
puts ("your first C program");
}
|