文字列クラスが文字列ヘッダーにあることがSTLリファレンスで示されています。ヘッダーを含めずに、次のプログラムがエラーなく実行されている方法は?#includeなしで文字列を使用する方法<string>?
#include<iostream>
using namespace std;
int main() {
string s;
cin>>s;
cout<<"string entered is : "<<s;
}
私はubuntuマシンでg ++コンパイラを使用しています。