C Проверьте, является ли персонаж пунктуацией

char ch = '!';
 if(ispunct(ch))
   printf("punctuation");     
 else
     printf("other symbol" );
// output: punctuation
CCopy
Dark Dugong