Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!ucselx!bionet!agate!darkstar!terra.ucsc.edu!daniel From: daniel@terra.ucsc.edu (Daniel Edelson) Newsgroups: comp.std.c Subject: stringizing Message-ID: <14888@darkstar.ucsc.edu> Date: 23 Apr 91 05:10:27 GMT Sender: usenet@darkstar.ucsc.edu Reply-To: daniel@terra.ucsc.edu (Daniel Edelson) Organization: University of California, Santa Cruz Lines: 16 Given the following program: #include #define str(x) #x int main(void) { printf("%s\n", str( hello\t\n\vworld\n\n)); return 0; } Is the output from this program supposed to be: hello world Thanks, Daniel Edelson