注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
VC2005 Express Edition を使ってます。 #include <iostream> #include <string> using namespace std; ... VC2005 Express Edition を使ってます。 #include <iostream> #include <string> using namespace std; int main() { char str[10] = "hello"; strcpy(str, "HELLO"); } ↑ こちらをコンパイルすると hello.cpp .\hello.cpp(8) : warning C4996: 'strcpy' was declared deprecated C:\Program Files\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy' という警告が出るのはどうしてでしょうか? #include <str
2009/12/04 リンク