#include #include "ci_string.h" using namespace std; int main() { ci_string s1 = "Abcde"; ci_string s2 = "aBCDE"; cout << "s1 = " << s1 << endl; cout << "s2 = " << s2 << endl; if (s1 == s2) cout << "Ej känslig för bokstavsskift, \n"; // << s1 << " == " << s2 << endl; else cout << "Känslig för bokstavsskift, \n"; // << s1 << " != " << s2 << endl; cout << "Skriv ett ord: "; cin >> s1; cout << s1 << endl; return 0; }