也就是判断参数是否在0-127之间
#include <stdio.h> #include <ctype.h> void test_ascii(int c) { if(isascii(c)){ printf("is ascii\n"); } else { printf("not ascii\n"); } } int main(void) { test_ascii(123); test_ascii(125); test_ascii(129); return 0; }
也就是判断参数是否在0-127之间
#include <stdio.h> #include <ctype.h> void test_ascii(int c) { if(isascii(c)){ printf("is ascii\n"); } else { printf("not ascii\n"); } } int main(void) { test_ascii(123); test_ascii(125); test_ascii(129); return 0; }