#include "stdio.h" void main() { int j; char *s="x\\035\\'"; for(j=0; s++,*s!='\0'; j++) printf("%s\n",s); printf("%d\n",j); }