All pastes #2053558 Raw Edit

Anonymous

public text v1 · immutable
#2053558 ·published 2011-05-03 18:26 UTC
rendered paste body
Tdata read(tFile fi){
	Tdata t;
	int i=0;
	t.mass = new int[1];
	while(!feof(fi)){
		t.mass =(int*)realloc(t.mass,(i+1)*sizeof(int));
		fscanf(fi,"%d",&t.mass[i]);
		i++;
	}
	t.n = i;
	return t;
}