rc.exe anyone??

Hi I am new to programming and am studying Software Engineering. I am having a problem debugging a small program. I am reciving an error messege which says
Error spawning 'rc.exe'
I cannot find any resources which can help. Can you??
The program is a simple one, and I dont like being beaten!
Please give us more information (for example source code, the OS, the compiler, etc.).
Ok, I am using Visual Studio 2008 Professional and the OS is Microsoft Vista I dont know what you mean by what the compiler is, I suppose its the one that comes with VS 2008 Pro and my code is:

/*this program isolates digits and swaps digits around*/

//include libraries
#include <iostream> //for cin >> & cout <<
#include <conio.h> //for _kbhit
using namespace std;

int originalNumber;
int encryptedNumber;
int digit1,digit2,digit3;

int main() //main algorithm

{
void isolateDigits();
void replaceDigits();
void swapdigit1WithDigit3();
void recomposeEncryptedNumber();

cout <<"\nEnter the original number: ";
cin >> encryptedNumber;

isolateDigits();
replaceDigits();
swapdigit1WithDigit3();
recomposeEncryptedNumber();

cout << "\nThe encrypted number is: ";

while (! _kbhit());
return( 0);

}

void isolateDigits()

{

digit1 = (originalNumber / 100); //isolates the first digit
digit2 = ((originalNumber % 100) / 10); //isolates the second digit
digit3 = (originalNumber % 10); //isolates the third digit

}

void replaceDigits()

{

digit1 = ((digit1 + 7) % 10);
digit2 = ((digit2 + 7) % 10);
digit3 = ((digit3 + 7) % 10);

}

void swapDigit1WithDigit3()

{
int temp;

temp = digit1;
digit1 = digit3;
digit3 = temp;

}

void recomposeEncryptedNumber()

}

If you need anymore information please let me know. I have even tried re-programming the code to see if its that but that has not worked.
Are you running AVG antivirus?
http://cboard.cprogramming.com/showthread.php?t=24609

Hope this helps
No im using Kaspersky I was wondering if VS had installed correctly, I might uninstall and start again.
Topic archived. No new replies allowed.