pvjc22/du2/program.c

21 lines
452 B
C
Raw Normal View History

2022-03-09 07:57:33 +00:00
#include <stdio.h>
#include <stdlib.h>
#define VELKOST_POLA 52
2022-03-09 07:58:54 +00:00
int main(){
2022-03-09 07:57:33 +00:00
//int i=1;
int value = 0;
int r = scanf("%d",&value);
if (r > 1){
printf("Úspešne som načítal hodnotu %d\n",value);
}
else {
printf("Načítanie sa nepodarilo. V premennej value ostala pôvodná hodnota. \n");
2022-03-09 08:02:11 +00:00
return;
2022-03-09 07:57:33 +00:00
}
// int pole[VELKOST_POLA];
//int vysledky[VELKOST_POLA]
//memset(pole,0,VELKOST_POLA * sizeof(int));
2022-03-09 07:59:50 +00:00
//for()
2022-03-09 07:57:33 +00:00
return 0;
2022-03-05 16:27:11 +00:00
}