RC stands for return code. The language processor sets RC every time a program issues a command. When a command ends without error, RC is usually 0. When a command ends in error, RC is whatever return code is assigned to that error.
The RC variable can be especially useful in an IF instruction to determine which path a program should take.