pvjc22/du3/test.c

12 lines
139 B
C
Raw Normal View History

2022-03-17 13:01:28 +00:00
#include <stdio.h>
int main(){
2022-03-17 17:53:14 +00:00
int c = 0;
char a = 'a';
if(a >= 0 && a <= 255)
printf("yes\n");
else
printf("no\n");
2022-03-17 13:01:28 +00:00
return 0;
}