Linear Algebra and the C Language/a0e6
Install and compile this file in your working directory.
/* ------------------------------------ */
/* Save as : c00b.c */
/* ------------------------------------ */
#include "v_a.h"
/* ------------------------------------ */
/* ------------------------------------ */
void fun(void)
{
clrscrn();
printf(" Hello word !\n\n");
}
/* ------------------------------------ */
/* ------------------------------------ */
int main(void)
{
do
{
fun();
} while(stop_w());
return 0;
}
/* ------------------------------------ */
/* ------------------------------------ */
Screen output example:
Hello word !
Press return to continue
Press X return to stop