home *** CD-ROM | disk | FTP | other *** search
- /*
- /* Sostituzione di ' con \' e di \ con \\
- /*
- */
-
- #include <stdio.h>
-
- #define MAXLENGTH 4096
-
- void main(void)
- {
- char S[MAXLENGTH],S2[MAXLENGTH];
- int is,is2;
-
-
- while(!feof(stdin)&&gets(S))
- {
- is=is2=0;
-
- while(is<strlen(S))
- {
- switch(S[is])
- {
- case '\'':
- case '\\':
- S2[is2++]='\\';
- }
-
- S2[is2++]=S[is++];
- }
-
- S2[is2]=0;
- printf("%s\n",S2);
- }
- }
-