hi finnex
geht das auch ohne das hier
" Äÿ" Äÿ" Õ³ýu
ich habs ins txt format gemacht.
geht das auch ohne das hier
" Äÿ" Äÿ" Õ³ýu
ich habs ins txt format gemacht.
Code:
//---------------------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
void person_hin();
void person_aus();
int main()
{
person_hin();
person_aus();
getch();
return(0);
}
void person_hin()
{
size_t anzahl;
int ok;
FILE* dat_zg = NULL;
char name[20];
printf("Bitte geben sie den Vornamen an:");
scanf("%s",name);
dat_zg = fopen("Baigox.txt","a+");
if (dat_zg != NULL)
{
anzahl = fwrite(name,sizeof(name),1,dat_zg);
if (anzahl == 1)
{
printf(" ok");
}
else
{
printf("Fehler");
}
}
else
{
printf("Fehler");
}
fclose(dat_zg);
dat_zg = NULL;
}
//-------------------------------------------
void person_aus()
{
size_t anzahl = 1;
int ok;
FILE* dat_zg = NULL;
char name[20];
dat_zg = fopen("Baigox.txt","r");
if (dat_zg != NULL)
{
while (anzahl==1)
{
anzahl = fread(name,sizeof(name),1,dat_zg);
printf("%s\n",name);
}
}
else
{
printf("Fehler");
}
fclose(dat_zg);
dat_zg = NULL;
getch();
}