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

int main(){
    printf("%s", strerror(errno));
    return 0;
}

Posted by cyj4369
,