Zdravím,
Netušil byste někdo, proč mi nasledující program nefunguje:
#include <stdio.h>
char pole[9]
void nacti(char pole[9])
{
printf("Zadejte maximalne deset cisel: ");
gets(pole);
}
void vypis_prvek(char pole[9])
{
puts(pole);
}
int main (void)
{
nacti();
short j;
for(j=0; j<10;j++) vypis_prvek(j);
getchar();
int d=0;
if(!d)++d;
if(d--)d+=2;
printf("%i",d);
getchar();
}
Předem děkuji mnohokrát za odpověď.