HOME

Start

Control Statements

Array

Function

Structure

Pointer

File

Projects

 

 

 

 

 

 

C programing

Ckalari.com is the No.1 website to get the best of C programs, free source codes, projects in c language……  

A C program to write to file and display it

#include<stdio.h>

#include<conio.h>

void main()

    {

    FILE *f1;

    char c;

    clrscr();

    printf("Enter  content to File\n");

    f1=fopen("first.dat","w");

    while((c=getchar())!=EOF)   

          {

      putc(c,f1);

    }

    fclose(f1); printf("The stores data\n\n");

    f1=fopen("first.dat","r");

    while((c=getc(f1))!=EOF)

    {

      printf("%c",c);

    }

    fclose(f1);

    getch();

     }

Copyright © 2007-2008 www.ckalari.com