Given the following program: #include <stdio.h> #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