high12noon blog

Contact high12noon

Questions, comments, constructive feedback? Send email to the name of this blog, which is high12noon, at mail dot com.

Just for fun, this C language program prints out the email address.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#include <stdio.h>

static const char * Array[] = {
	"mail", "noon", "red", "com", "high", "herring", NULL
};

int main(void)
{
	printf("%s%d%s@%s.%s\n", Array[4], (3 * 4), Array[1], Array[0], Array[3]);
	return 0;
}

Send complaints to: /dev/null.


Back to main page