Zdravim, mam taku otázku, ze ci sa da spravit to, aby ten text bol v strede okna aj text zo suboru test.txt...v programe netbeans
void zapis()
{
char name[10];
printf("Zadaj svoje meno: ");
fgets(name, 20, stdin);
FILE *fp;
fp = fopen("test.txt","a+");
/*Create a file and add text*/
fprintf(fp,"%s %d\n",name, karel.pocet_krokov); /*writes data to the file*/
fclose(fp); /*done!*/
refresh();
return 0;
}


Reply With Quote
