C ile kayıt etme
Jul 29,2007 00:00 by TaZ

#include <stdio.h>
#include <conio.h>
void main()
{
   FILE *dosya;
   char ad[20];
   int s;
   clrscr();
   dosya=fopen("hep.dat","a");
   printf("Sayi gir");scanf("%d",&s);
   printf("ad? gir");scanf("%s",ad);
   fprintf(dosya,"%d %s\n",s,ad);
   fclose(dosya);
   getch();
 }