#include <iostream> #include <string> using namespace std; int main() { string x = "ALERT"; string y = x[0] + x[1]; cout << y; //PRINT AL return 0; }
Select allOpen in new window