Entfernen Sie das erste Zeichen von String C.

if (contents[0] == '\n') 
    memmove(contents, contents+1, strlen(contents));
Sparkling Squirrel