1>Project : error PRJ0003 : Error spawning 'rc.exe'.

Posted by user320950 on Stack Overflow See other posts from Stack Overflow or by user320950
Published on 2010-04-24T17:34:20Z Indexed on 2010/04/24 17:43 UTC
Read the original article Hit count: 1150

Filed under:
|
|
|

1>Project : 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;
}

© Stack Overflow or respective owner

Related posts about c++

Related posts about visual-c++