Check if the character is punctuated

ww‮uttual.w‬ri.com
Check if the character is punctuated
//check if character is a space in c language

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char ch = ' ';
    if(isspace(ch))
        printf("is a space");
    else
        printf("other");
    return 0;
}
Created Time:2017-08-28 09:39:54  Author:lautturi