首页 > 代码库 > errno

errno

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

int main(int argc, char *argv[])
{
    printf("%d\n", errno);
    return 0;
}