2025-03-24 19:59:35 +08:00

21 lines
238 B
C

#include <stdio.h>
int main(){
char str[100];
char *p = str;
FILE *fp;
fp = fopen("test.dat", "w");
gets(str);
while(*p != '\0'){
if(*p >= 'a' && *p <= 'z'){
*p-=32;
}
p++;
}
fputs(str, fp);
fclose(fp);
return 0;
}