PHP Kod:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *fp,*fp1;
char harf;
fp = fopen("dosya.txt", "r");
fp1 = fopen("dosya1.txt","w");
if (fp == NULL || fp1 == NULL)
{
printf("Dosya açılamadı!\n");
exit(1);
}
while ((harf = fgetc(fp)) != EOF)
{
fputc(harf,fp1);
}
fclose(fp);
fclose(fp1);
return 0;
}