⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notatty.c

📁 该代码为unix环境高级编程的源代码
💻 C
字号:
#include	<stdio.h>/* * The following prints errno=25 (ENOTTY) under 4.3BSD and SVR2, * when stdout is redirected to a file. * Under SVR4 and 44BSD it works OK. */intmain(){	int			fd;	extern int	errno;	if ( (fd = open("/no/such/file", 0)) < 0) {		printf("open error: ");		printf("errno = %d\n", errno);	}	exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -