c Überprüfen Sie, ob ein Zeichen eine Interpunktion ist
char ch = '!';
if(ispunct(ch))
printf("punctuation");
else
printf("other symbol" );
// output: punctuation
CCopy
Dark Dugong