スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2080: 'fopen_s': 'auto' の型は、単一の初期化式からのみ推測できます
ソース(バグ有り):
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
ソース(修正済み):
#include <stdio.h>
#include <stdlib.h>
int main()
{ |
スポンサード リンク