Untitled
Anonymous
c_cpp
01/24/2022 5:26 PM
148 B
13
Indexable
#include<iostream>
using namespace std;
int main()
{
string s="123";
cout<<s.front();
return 0;
}Editor is loading...
#include<iostream>
using namespace std;
int main()
{
string s="123";
cout<<s.front();
return 0;
}