Previous Next Up Index Contents

Exercice 2.3

Voici une des solutions possibles:

	#include <stdio.h>
	/* Notre premier programme en C */
	main()
	{
		printf("hello, ");
		printf("world");
		printf("\n");
		return 0;
	}


Previous Next Up Index Contents

Feedback - Copyright © 1993,1996,1997 F.Faber