#ifndef TAB_H #define TAB_H int wczytaj(float t[], int max_rozmiar); void wyswietl(float t[], int n); float srednia(float t[], int n); float suma(float t[], int n); void sortuj(float t[], int n); int maksind(float t[], int n); float *odwroc(float *t, int n); void zamien(float *a,float *b); #endif