Zdravím, nevíte kde mám chybu? vypíše mi to nesmyslná číslo, převážně nuly...Díky
#include<stdio.h>
#include<stdlib.h>
int main(int argc, char **argv)
{
int i=0;
float pocetznaku=0;
float pole1[]={0};
FILE * soubor_vstup;
soubor_vstup = fopen("vstup.txt","r");
if(soubor_vstup == NULL)
printf("Nelze nenalezen\n");
for(i=0;i<EOF;i++)
fscanf(soubor_vstup,"%lf",&pole1 );
while(getc(soubor_vstup) != EOF)
pocetznaku++;
for(i=0;i<pocetznaku;i++)
printf("%f\n ",*(pole1+i));
fclose(soubor_vstup);
//getch();
return 0;
}