PHP Kod:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *fp;
char dizi[100];
int i=0,j;
char eski_harf, temp_harf, yeni_harf;
fp = fopen("dosya.txt", "r");
printf("Degistirmek Istediginiz Harf :");
scanf("%c",&eski_harf);
printf("Yeni Harf : ");
scanf("%c",¥i_harf);
if (fp == NULL)
{
printf("Dosya açılamadı!\n");
exit(1);
}
while ((temp_harf = fgetc(fp)) != EOF)
{
dizi[i] = temp_harf;
if (temp_harf == eski_harf)
{
dizi[i] = yeni_harf;
printf("%c bulundu ve %c ile degistirildi\n", eski_harf,yeni_harf);
}
i++;
}
fclose(fp);
fp = fopen("dosya.txt","w");
for(j=0;j<i;j++)
fputc(dizi[j],fp);
fclose(fp);
return 0;
}