pvjc23/du2/program.c

19 lines
264 B
C
Raw Normal View History

2023-03-02 14:33:37 +00:00
#include <stdio.h>
#include <stlib.h>
#define VELKOST_POLA 52
int main(){
int i;
int pole[VELKOST_POLA];
for(i=0; i<VELKOST_POLA; i++){
int value = 0;
printf('Zadaj hodnotu: ');
int r = scanf("%d",&value);
pole[i]=r;
}
return 0;
}