Using strerror
#include <iostream> #include <string.h> using namespace std; int main() { cout << strerror( 2 ) << endl; return 0; }