19 lines
351 B
C
19 lines
351 B
C
|
#include<stdio.h>
|
||
|
|
||
|
#define FIELD_SIZE 52
|
||
|
|
||
|
int main(){
|
||
|
int field[FIELD_SIZE] = {0,0,0,0};
|
||
|
int count = 0;
|
||
|
int highest = 0;
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
}
|