OAIP/13-14/Function.h

14 lines
180 B
C
Raw Normal View History

#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();