#include
#include
typedef unsigned long int u32;
u32 n = 10L; //ilosc elementow tablicy
int *Tab = NULL;
int *InitTab( void )
{
Tab = calloc( n, sizeof(int) );
return Tab;
}
void FreeTab( void )
{
free( Tab );
}
int InitData( void )
{
u32 i;
for ( i=0; i