#include <stdio.h> int N(char *str, FILE *iop); { int ch; while (ch = *str++) putc(ch, iop); return ferror(iop) ? EOF : 0; }
Compilation Error
Previous Question Next Question
Your comments will be displayed only after manual approval.