www.training.objectzoom.com
Home
C & C++
JAVA
PHP
ASP
.
NET
SQL
HTML-5,css-3
JavaScript
Jquery
C & C++
Syllabus
Reference Books
Download
Read OnLine C
Read OnLine C++
Read OnLine C- Program Example
10_FILE HANDLING
PRAC 2
/* Program to display the contents of a file on screen */
#include <stdio.h>
void main()
{
FILE *fopen(), *fp;
int c;
clrscr();
fp = fopen("prog.c","r");
c = getc(fp) ;
while (c!= EOF)
{
putchar(c);
c = getc(fp);
}
fclose(fp);
getch();
}
Previous
Next
Download