1>Project : error PRJ0003 : Error spawning 'rc.exe'.
- by user320950
1Project : error PRJ0003 : Error spawning 'rc.exe'.. this is the error i get when i try to run this small practice program of reading and writing files which i cant do because of the reason of me not being able to get the files to open correctly. i use microsoft visual c++ 2008 and i have used the file path to try to open the file as well and i cant can someone help?
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
ifstream infile;
ofstream myfile;
infile.open("ex.txt");
myfile.open ("example.txt");
myfile.close();
return 0;
}