program.c

This commit is contained in:
Patrik Seman 2023-03-02 15:33:37 +01:00
parent 30d568c55b
commit 516a479456

18
du2/program.c Normal file
View File

@ -0,0 +1,18 @@
#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;
}