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!
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*/
digit1 = (originalNumber / 100); //isolates the first digit
digit2 = ((originalNumber % 100) / 10); //isolates the second digit
digit3 = (originalNumber % 10); //isolates the third digit