#include <iostream>
#include <cstring>
using namespace std;
int main()
{
string str = "apna college";
// for(int i=0; i<str.length(); i++) {
// cout << str[i] << "-";
// } cout << "\n";
for(char ch : str) {
cout << ch << ",";
} cout << endl;
// for(char ch : str) {
// cout << ch << ",";
// }
// cout << endl;
return 0;
}
No comments:
Post a Comment