
Name: Bob Surunkle ADDR: 1234 Underwhere Drive Nowhere'sville, CO 44678 EM: bob@noplace.com PH: 800.456.1212
/* NAME: printing.c DESCRIPTION: Teaches about compiler errors, inclusion, header files, and the standard input/output header. SYNOPSIS: ./a.out */ #include |
/* NAME: printing.c DESCRIPTION: Teaches clear, color and special characters... SYNOPSIS: ./a.out */ #include |
/*
NAME: calc1.c
DESCRIPTION: Teaches definitions, float TYPEs, scanf(), if-then, and maths.
SYNOPSIS: ./calc1
*/
#include <stdio.h>
#define PI 3.1415926
int main()
{
printf("\033[H");printf("\033[J"); // clears the screen
printf("%f\n",PI);
return(0);
}
|