Algorithm/TIP
[c++] char비교, string 비교
IagreeBUT
2022. 9. 1. 00:31
728x90
string str;
str.at(index); // 해당 index의 char 반환
char 비교하는 방법
char a = 'c';
char b = 'b';
if(a == 'c') // ok & true
if(a == b) // ok & false
if(a== "c")//error
string 비교하는 방법
int strcmp(const char *s1, const char *s2);
int strncmp(const char* s1, const char* s2, size_t count);
https://codechacha.com/ko/cpp-strncmp/
728x90