Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- int main() {
- string m = "Program Language C++";
- for (char& e: m)
- cout << e << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement