//strings C #include #include using namespace std; // πίνακες χαρακτήρων int main(int argc, char *argv[]) { char s1[] = {'H','e','l','l','o','\0'}; char s2[6] = {'H','e','l','l','o','\0'}; char s3[6] = {"Hello"}; char s4[] = {"Hello there"}; char s5[] = "Hello again"; cout< "<