/* ansitest.c - Don Yang (uguu.org) Test ANSI-ness of compiler. 11/30/01 */ #include int main(void) { char *text = "??!"; int d; d = 8 //**/ 2 ; printf("%d, %d\n", (int)*text, d); return 0; }