Đề bài: Viết chương trình đão ngược nội dung của một file văn bản. Mã: Select All #include<stdio.h> #include<conio.h> #include<dos.h> void docfile(int c,FILE *fp) { if (c!=EOF) docfile(getc(fp),fp); putc(c,stdout); if (wherey()>20) {getch();clrscr();} } /*-------------------------------------------------------- -------------------*/ void main() { FILE *fp; char filename[80]; int c; textcolor(10); textbackground(1); clrscr(); printf("\n\tCHUONG TRINH DAO NGUOC NOI DUNG FILE DUA RA STDOUT"); window(1,3,80,25); printf("\n\tNhap ten file: "); fflush(stdin); gets(filename); if((fp=fopen(filename,"r"))==NULL) { cprintf("\n\tFile %s khong mo duoc",filename); getch(); return 0; } clrscr(); printf("\n\t\t\tNOI DUNG FILE %s:\n",filename); window(3,5,80,25); c=getc(fp); docfile(c,fp); fclose(fp); getch(); }