Linear Algebra and the C Language/a00e


Install and compile this file in your working directory.

/* ------------------------------------ */
/*  Save as :   test.c                  */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
int main(void)
{
	clrscrn();	
	printf(" Hello word !\n\n");	
	stop();
	
    return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */


Example screen output:
 Hello word !

 Press return to continue.