#include <stdio.h>
int main0804(){
FILE *f;
f=fopen("G:\\Godoro\\Product\\Examples\\C-Cpp\\CFundementals\\Out.txt","w");
if(f==NULL){
printf("Dosya a��lamad�.\n");
}
// TODO : Putint? fprintf()
fputs("Godoro\n",f);
fputs("Yaz�l�m\n",f);
fputs("Dan��manl�k\n",f);
fputs("E�itim\n",f);
fputs("Yay�nc�l�k\n",f);
fprintf(f,"Bu %d kere %d �arp�l�rsa %d eder",
2,3,2*3);
fclose(f);
printf("Bitti.");
return 0;
}
Dosyayı İndir