Copyright 1984 by ABComputing					   May 15, 1984

/*  The	smallest possible C program   */
main(){}




/*  From the article,  this program can	 be used to  determine that
    you	have installed your compiler  properly.	 It is also a  good
    benchmark to compare compiler compile-time speed.	*/

main()
{
	printf("Hello, world\n")
}



/*  The	following is the final	example	from the text, showing	how
    to define and print	integer	and character variables.   */

main()
{
	int izero, imin, imax;
	char cha, chb, chc;
	izero =	0;

	imin  =	-32768;
	imax  =	32767;
	cha = 'a';
	chb = 'b';
	chc = 'c';

	printf("Integers = %d %d %d\n",izero,imin,imax);
	printf("Characters = %c %c %c",cha,chb,chc);
}




		     ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿
		     ³ File Name:  ÛÛ	 list1.c    ÛÛ	³
		     ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ
