A Software Guy




A Software Guy
I wrote software to help make computer generated movies and create digital visual effects. Now I am working with a team of fine software developers at Pixia Corp. as the Director of Technology

Technical Blah

Color Theory (Coming soon)
Monitor Calibration Technique For Computer Animated Films (Coming soon)

...home




/*
 * 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
 */