スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2039: 'std::endl': 'std::bitset<16>' のメンバーではありません。
ソース(バグ有り):
//bitset のサンプルコード //ビットで表現する #include <iostream> #include <bitset> int main() { |
ソース(修正済み):
//bitset のサンプルコード //ビットで表現する #include <iostream> #include <bitset> int main() { |
スポンサード リンク