`/* mod_str.c -- 修改字符串*/
#include
#include
#include
void ToUpper(char *);
int PunctCount(const char *);
#define LIMIT 81
int main(void)
{
char line[LIMIT];
char * find;
puts("Please enter a line:");
fgets(line, LIMIT, stdin);
find = strchr(line, '\n');
if (find)
*find = '\0';
ToUpper(line);
puts(line);
printf("That line has %d punctunation characters.\n",\
PunctCount(line));
return 0;
}
void ToUpper(char * str)
{
while (*str)
{
*str = toupper(*str);
str++;
}
}
int PunctCount(const char * str)
{
int ct = 0;
while (*str)
{
if(ispunct(*str))
ct++;
str++;
}
return ct;
}

求解决。。。。
可以运行啊
是不是没有包含头文件
#include "stdio.h"
#include "string.h"
#include "ctype.h"
能不能换一个编译器,应该是编译器的问题