C语言字符串函数strstr

C语言字符串函数strstr_第1张图片

char *s = "abcd.txt";
char *p = strstr(s, ".wps");

if(p == NULL)
    printf("文件[%s]不是WPS文件\n", s);
else
    printf("文件[%s]是WPS文件\n", s);

 

你可能感兴趣的:(C语言基础,c语言,java,服务器)