I can't open the file in c++. I saw a lot of page that asked same question but i can't figured it out. I opened new project for just open the file (As you can see). -I also tryed it with mingw but nothing changed. I try to put the file everywhere in the folder. Please help.
string sayi;
ifstream oku("sayilar.txt");
if (oku.is_open())
{
cout << "Opened";
}
else
{
cout << "Can't opened";
}
int x; cin >> x;