Untitled
unknown
c_cpp
4 years ago
109 B
4
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;
}