14 lines
180 B
C
14 lines
180 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#define DEFAULT_LENGHT 10
|
||
|
|
||
|
extern int arr[DEFAULT_LENGHT];
|
||
|
|
||
|
typedef struct {
|
||
|
int value, index;
|
||
|
} Element;
|
||
|
|
||
|
void startProg();
|