snažím se vytvořit program ,který z souboru načte string(konktretne IP adresu) a chci tento string uložit do řetezce adresa abych ho mohl třeba dále vypsat či dále s ním pracovat jako s obyčejným stringem.
toto je muj zdrojak
#include<stdio.h>
int main()
{
FILE *fr;
int i=0;
char znak;
char adresa[20];
if ((fr=fopen("adresy.txt","r"))==NULL){
printf("Soubor adresy.txt se nepodařilo otevrit");
return 0;
}
while(adresa[i]!= EOF)
adresa[i]=getc(fr);
i++;
}
fclose(fr);
return 0;
}
toto chyba při kompilace
gcc -o PING PING.c
PING.c:16: warning: parameter names (without types) in function declaration
PING.c:16: warning: data definition has no type or storage class
PING.c:17: error: syntax error before "return"
a toto obsah souboru adresy.txt
10.0.0.3