Run ID:111133
提交时间:2025-02-28 20:39:57
#include<iostream> using namespace std; int main(){ char*str1="abc"; char*str2="abc"; if(strcmp(str1,str2)==0){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }