Max472 发表于 2021-8-8 22:16:06

C语言字符串怎样匹配中文?

if ( "你好" == a )// a为之前输入的字符串 “你好”


这样匹配不了是为什么呀?

kogawananari 发表于 2021-8-8 22:38:09

#include <stdio.h>
#include <string.h>
void main()
{
      char a = {196,227,186,195,0};
      if(strcmp("你好", a) == 0){
                printf("ok");
      }
}
页: [1]
查看完整版本: C语言字符串怎样匹配中文?