#include <stdio.h>
main()
{
char c;
while ((c = getchar()) != EOF)
{
if (c != '\t') putchar(c);
else printf("/t");
}
}
questo sostituisce /t a ogni carattere di tabulazione nel testo ma io voglio che sostituisca \t non /t che in realtà non centra niente, solo che è difficile sostituire \t perché viene interpretato come un carattere di tabulazione, qualcuno ha qualche idea?