代码搜索:perror
找到约 3,259 项符合「perror」的源代码
代码结果 3,259
www.eeworm.com/read/190618/8439922
c perror.c
/*************************************************************
* File: lib/perror.c
* Purpose: Print error message.
* Author: Phil Bunce (pjb@carmel.com)
* Revision History:
* 980623 Created
*/
www.eeworm.com/read/183756/9141845
c perror.c
/* perror.c - print error value. stdio.h */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,05mar93,jdi documentation cleanup for 5.1.
01b,20s
www.eeworm.com/read/162511/10300310
c perror.c
/* Implementation of the PERROR intrinsic.
Copyright (C) 2005 Free Software Foundation, Inc.
Contributed by François-Xavier Coudert
This file is part of the GNU Fortran
www.eeworm.com/read/161772/10375875
exe perror.exe
www.eeworm.com/read/161772/10375879
c perror.c
/* Demonstration of error handling with perror() and errno. */
#include
#include
#include
int main( void )
{
FILE *fp;
char filename[80];
print
www.eeworm.com/read/314041/6955477
m perror.m
x=[0:0.01:100];
for i=100:10000
Pe(i)=0.01*sqrt(2/pi)*sum(exp(-0.5*x(i:10000).^2));
end
www.eeworm.com/read/140797/7146864
c perror.c
#include
#include
void perror(const char *msg)
{
printf("%s: error %s\n", msg, errno);
}
www.eeworm.com/read/140797/7147045
c perror.c
/*
* perror.c
*/
#include
#include
#include
void perror(const char *s)
{
fprintf(stderr, "%s: error %d\n", s, errno);
}
www.eeworm.com/read/445796/7590157
obj perror.obj
www.eeworm.com/read/398823/7918253