Я новичок и пытаюсь прочитать файл, используя fopen_s, но ошибка показывает, что
Build: Debug in histimg (compiler: GNU GCC Compiler) ===|
E:\CCS\histimg\main.cpp|19|error: 'fopen_s' was not declared in this scope|
Код:
fopen_s(&fp,"C:\\Users\\asus\\Pictures\\SavedPictures\\1.png", "rb");
if (fp == 0)
{
cout << "Open image failed!" << endl;
exit(0);
}
Не могли бы вы подсказать мне, как его решить. Спасибо.