Technical Blah
Color Theory (Coming soon)
Monitor Calibration Technique For Computer Animated Films (Coming soon)
/*
* main.c - a pointless C program
*
* $Header: $
* $Log: $
*/
#include <stdio.h>
#include <stdlib.h>
int
main(int argc, char *argv[])
{
int i;
for (i = 1; i < argc; i++) {
printf("%s: %s says \"Hello world!\"\n", argv[0], argv[i]);
}
printf("If you compiled and ran this program, you wasted time.\n");
return EXIT_SUCCESS;
}
/*
* end of main.c
*/