#!/bin/ch /* Example CH CGI program that displays the time in plain ASCII text. */ #include int main() { printf("Content-type: text/plain\n\n"); printf("Today's date is: %s\n", __DATE__); printf("The time is: %s\n", __TIME__); }