文字列の比較

C
char str[] = "ABC";
C++
#include <string>

std::string str = "ABC";
C++/CLI
System::String^ str = "ABC";
C#
string str = "ABC";

参考

参考書