> > > What if I want to use the sequence "??!" within a string?
> One method is to use string pasting:
> 	printf("Puzzled?" "?!  You don't need to be!\n");
Or use the new escape sequence invented by ANSI for this purpose:
       printf("Puzzled?\?!  You don't need to be!\n");
Walter
------