スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:コンパイルエラーメッセージ:warning C4467: ATL 属性の使用は非推奨です。ソース(バグ有り):
#include <iostream> [include <fstream> int main() { #ifdef __STDC__ std::cout << "このコンパイラはANSI Cに基準しています。" << std::endl; #else std::cout << "このコンパイラはANSI Cに基準していません。" << std::endl; #endif return 0; }
ソース(修正済み):
#include <iostream> #include <fstream> int main() { #ifdef __STDC__ std::cout << "このコンパイラはANSI Cに基準しています。" << std::endl; #else std::cout << "このコンパイラはANSI Cに基準していません。" << std::endl; #endif return 0; }
[コンパイルエラーコード、メッセージに戻る]