strerror - Returns error message associated with the errnum in C


#include<string.h>
#include<stdio.h>

int main(void){
  printf(strerror(10));
}