帮忙举个范例 如A+B,谢谢!
范本:请按此种语言编写。#include<stdio.h> main() { FILE * fp; int fd; fp=fopen(“/etc/passwd”,”r”); fd=fileno(fp); printf(“fd=%d\n”,fd); fclose(fp); }