error strerror 함수 용법

628 단어 c

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

int main (void) {
	FILE* fp = fopen ("none", "r");
	if (! fp) {
		printf ("fopen: %d
", errno); printf ("fopen: %s
", strerror (errno)); printf ("fopen: %m
"); perror ("fopen"); return -1; } fclose (fp); return 0; } [img]http://dl2.iteye.com/upload/attachment/0100/5674/cb7a9cc4-aef9-3ce1-a926-39744d2a62c0.png[/img]

좋은 웹페이지 즐겨찾기