helloworld_Variable.c
/* 
Josh Santomieri
Santomieri Systems
http://www.santsys.com

09/26/2002
*/

#include 

int main(int argc, char *argv[])
{
	char cMyStr[] = "Hello World";

	printf("%s", cMyStr);
	return 0;
}